Currently generics are indexed as class definitions
class Foo<T> {}
// ^ scip-dart pub ... lib/`foo.dart`/T#
Since T isn't actually a class, it shouldn't be indexed as such
scip-typescript indexes the above the following way:
class Foo<T> {}
// ^ scip-typescript npm ... lib/`foo.dart`/Foo#[T]
we should mirror this in scip-dart
Currently generics are indexed as class definitions
Since
Tisn't actually a class, it shouldn't be indexed as suchscip-typescript indexes the above the following way:
we should mirror this in scip-dart