- Improved support for getters/setters, utilizing
<get>
/<set>
keywords within indexed symbols - Fixed relationship indexing for fields, getters, and setters
- Adds support for missing SymbolInformation.kind on extension, mixin symbols
- Adds support for SymbolInformation.kind on the following symbols: class, enum, type alias, constructor, method, function, variable, parameter, property, and field.
- Minor update to release CI
- Updated the min dart version to
>=2.19 <3.0.0
, this is a pre-step to supporting dart 3
- Minor dependency updates and a test release for auto-tagging
- Added
elementFor
to the exportedSymbolGenerator
that can be used to retrieve the analyzerElement
that should be used when generating symbols - Fixed issue where the synthetic
values
field onEnum
types was getting indexed (we just dont want to index this) - Fixed issue where named normal formal parameters were only declared as references to their targeting field, now they are both a reference and a definition
- Exported
SymbolGenerator
from thesymbol_generator.dart
entrypoint. Making use of this will allow generation of scip symbols outside of scip-darts main use case of indexing all the symbols in a dart repo
- Default
index-relationships
totrue
, now all scip files will be generating relationship data by default - Fixed issue where
this.<param>
declared in a constructor (NormalFormalParameters), was incorrectly referencing thethis
part of the parameter - Updated the internal protobuf spec to the latest version. This includes populating
signatureDocumentation
as apart of symbol information declarations
- Fixed a bug discovered with diagnostic reporting, where most diagnostics were missing
- Added support for occurrence diagnostics, all indexed packages will now include hints, warnings, and errors from the dart analysis server
- Fixed issues where cascade references would incorrectly index variables and assignments
- Fixed issues where functions passed as parameters would incorrectly index their nested parameters
- Put the generation of relationships field behind a
--index-relationships
flag which needs to be opted in. This was to continue to work on coverage of relationships support without effecting consumers. - Fixed issue where the
projectRoot
uri was being calculated incorrectly
- Generated scip bindings updated to provide relationship fields. This allows for "Go to Implementations" and other class/method inheritance navigation.
- Added
--version
flag to retrieve the version of scip-dart - Populated
ToolInfo.version
in resulting scip files
- Fixed bug where running indexing on a dart package with a nested subpackage would throw an exception
- Fixed bug where the synthetic functions
loadLibrary
andcall
were indexed as references - Deprecated the --path flag in favor of running on all dart files in the package
- Initial open sourcing of repo