- Added support for
enclosing_rangeon occurrences definitions
- Fixed a few minor bugs found in pubspec.yaml indexing (skips publish_to: none pubspecs, and considers "version" optional)
- Updates version constraints to support running on dart 3
- Added a default disabled flag for indexing pubspec.yaml files
--index-pubspec.
- Added
--outputflag to configure output location of the generated index file
- Fixed a bug where constructor references weren't correctly indexed
- Dependency bumps
- 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
elementForto the exportedSymbolGeneratorthat can be used to retrieve the analyzerElementthat should be used when generating symbols - Fixed issue where the synthetic
valuesfield onEnumtypes 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
SymbolGeneratorfrom thesymbol_generator.dartentrypoint. 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-relationshipstotrue, now all scip files will be generating relationship data by default - Fixed issue where
this.<param>declared in a constructor (NormalFormalParameters), was incorrectly referencing thethispart of the parameter - Updated the internal protobuf spec to the latest version. This includes populating
signatureDocumentationas 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-relationshipsflag which needs to be opted in. This was to continue to work on coverage of relationships support without effecting consumers. - Fixed issue where the
projectRooturi 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
--versionflag to retrieve the version of scip-dart - Populated
ToolInfo.versionin 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
loadLibraryandcallwere indexed as references - Deprecated the --path flag in favor of running on all dart files in the package
- Initial open sourcing of repo