Skip to content

v0.2.2

Compare
Choose a tag to compare
@olafurpg olafurpg released this 21 Jun 12:17
· 19 commits to main since this release
f7b2643

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 👏🏻

  • Add support for TypeParameters and SingleVariableDesignations for C# by @sagi1623 in #33

Internal

  • Add test case for VbNet with different casing by @sagi1623 in #32

Full Changelog: v0.2.1...v0.2.2