v0.2.2
Type parameters and single variable designations
Previously, scip-dotnet didn't index correctly type parameters or single variable designations
class Example<T> // class type parameter T
T GenericConstraint<T>(T param) where T : new() // method type parameter T
(var a, var b) = (1, 2); // Single variable designations a and b
This bug has now been fixed thanks to a contribution from @sagi1623 👏🏻
Internal
Full Changelog: v0.2.1...v0.2.2