├── .github ├── dependabot.yml ├── labeler.yml └── workflows │ ├── labeler.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .idea └── .idea.scip-dotnet │ └── .idea │ └── encodings.xml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Dockerfile ├── LICENSE ├── NOTICE ├── ScipDotnet.Tests ├── Position.cs ├── Range.cs ├── ScipDotnet.Tests.csproj ├── SnapshotTests.cs └── Usings.cs ├── ScipDotnet ├── IndexCommandHandler.cs ├── IndexCommandOptions.cs ├── LICENSE ├── Program.cs ├── Scip.cs ├── ScipCSharpSyntaxWalker.cs ├── ScipDocumentIndexer.cs ├── ScipDotnet.csproj ├── ScipProjectIndexer.cs ├── ScipSymbol.cs └── ScipVisualBasicSyntaxWalker.cs ├── global.json ├── readme.md ├── release.sh ├── renovate.json ├── scip-dotnet.sln ├── scip.proto └── snapshots ├── input ├── .DS_Store ├── WpfApplication │ ├── WpfApplication.sln │ └── WpfApplication │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── WpfApplication.csproj └── syntax │ ├── Main │ ├── Classes.cs │ ├── Enums.cs │ ├── Events.cs │ ├── Expressions.cs │ ├── Fields.cs │ ├── GlobalAttributes.cs │ ├── Identifiers.cs │ ├── Interfaces.cs │ ├── Literals.cs │ ├── Main.csproj │ ├── Methods.cs │ ├── Operators.cs │ ├── Packages.cs │ ├── Preprocessors.cs │ ├── Program.cs │ ├── Properties.cs │ ├── QuerySyntax.cs │ ├── Records.cs │ ├── Statements.cs │ └── Structs.cs │ ├── VBMain │ ├── CaseInsensitive.vb │ ├── Classes.vb │ ├── Enums.vb │ ├── Events.vb │ ├── Expressions.vb │ ├── Fields.vb │ ├── GlobalAttributes.vb │ ├── Identifiers.vb │ ├── Interfaces.vb │ ├── Literals.vb │ ├── Methods.vb │ ├── Modules.vb │ ├── Operators.vb │ ├── Packages.vb │ ├── Preprocessors.vb │ ├── Program.vb │ ├── Properties.vb │ ├── QuerySyntax.vb │ ├── Statements.vb │ ├── Structs.vb │ └── VBMain.vbproj │ └── syntax.sln ├── output-net6.0 ├── WpfApplication │ └── WpfApplication │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ └── MainWindow.xaml.cs └── syntax │ ├── Main │ ├── Classes.cs │ ├── Enums.cs │ ├── Events.cs │ ├── Expressions.cs │ ├── Fields.cs │ ├── GlobalAttributes.cs │ ├── Identifiers.cs │ ├── Interfaces.cs │ ├── Literals.cs │ ├── Methods.cs │ ├── Operators.cs │ ├── Packages.cs │ ├── Preprocessors.cs │ ├── Program.cs │ ├── Properties.cs │ ├── QuerySyntax.cs │ ├── Records.cs │ ├── Statements.cs │ └── Structs.cs │ └── VBMain │ ├── CaseInsensitive.vb │ ├── Classes.vb │ ├── Enums.vb │ ├── Events.vb │ ├── Expressions.vb │ ├── Fields.vb │ ├── GlobalAttributes.vb │ ├── Identifiers.vb │ ├── Interfaces.vb │ ├── Literals.vb │ ├── Methods.vb │ ├── Modules.vb │ ├── Operators.vb │ ├── Packages.vb │ ├── Preprocessors.vb │ ├── Program.vb │ ├── Properties.vb │ ├── QuerySyntax.vb │ ├── Statements.vb │ └── Structs.vb ├── output-net7.0 └── syntax │ ├── Main │ ├── Classes.cs │ ├── Enums.cs │ ├── Events.cs │ ├── Expressions.cs │ ├── Fields.cs │ ├── GlobalAttributes.cs │ ├── Identifiers.cs │ ├── Interfaces.cs │ ├── Literals.cs │ ├── Methods.cs │ ├── Operators.cs │ ├── Packages.cs │ ├── Preprocessors.cs │ ├── Program.cs │ ├── Properties.cs │ ├── QuerySyntax.cs │ ├── Records.cs │ ├── Statements.cs │ └── Structs.cs │ └── VBMain │ ├── CaseInsensitive.vb │ ├── Classes.vb │ ├── Enums.vb │ ├── Events.vb │ ├── Expressions.vb │ ├── Fields.vb │ ├── GlobalAttributes.vb │ ├── Identifiers.vb │ ├── Interfaces.vb │ ├── Literals.vb │ ├── Methods.vb │ ├── Modules.vb │ ├── Operators.vb │ ├── Packages.vb │ ├── Preprocessors.vb │ ├── Program.vb │ ├── Properties.vb │ ├── QuerySyntax.vb │ ├── Statements.vb │ └── Structs.vb ├── output-net8.0 └── syntax │ ├── Main │ ├── Classes.cs │ ├── Enums.cs │ ├── Events.cs │ ├── Expressions.cs │ ├── Fields.cs │ ├── GlobalAttributes.cs │ ├── Identifiers.cs │ ├── Interfaces.cs │ ├── Literals.cs │ ├── Methods.cs │ ├── Operators.cs │ ├── Packages.cs │ ├── Preprocessors.cs │ ├── Program.cs │ ├── Properties.cs │ ├── QuerySyntax.cs │ ├── Records.cs │ ├── Statements.cs │ └── Structs.cs │ └── VBMain │ ├── CaseInsensitive.vb │ ├── Classes.vb │ ├── Enums.vb │ ├── Events.vb │ ├── Expressions.vb │ ├── Fields.vb │ ├── GlobalAttributes.vb │ ├── Identifiers.vb │ ├── Interfaces.vb │ ├── Literals.vb │ ├── Methods.vb │ ├── Modules.vb │ ├── Operators.vb │ ├── Packages.vb │ ├── Preprocessors.vb │ ├── Program.vb │ ├── Properties.vb │ ├── QuerySyntax.vb │ ├── Statements.vb │ └── Structs.vb └── output-net9.0 └── syntax ├── Main ├── Classes.cs ├── Enums.cs ├── Events.cs ├── Expressions.cs ├── Fields.cs ├── GlobalAttributes.cs ├── Identifiers.cs ├── Interfaces.cs ├── Literals.cs ├── Methods.cs ├── Operators.cs ├── Packages.cs ├── Preprocessors.cs ├── Program.cs ├── Properties.cs ├── QuerySyntax.cs ├── Records.cs ├── Statements.cs └── Structs.cs └── VBMain ├── CaseInsensitive.vb ├── Classes.vb ├── Enums.vb ├── Events.vb ├── Expressions.vb ├── Fields.vb ├── GlobalAttributes.vb ├── Identifiers.vb ├── Interfaces.vb ├── Literals.vb ├── Methods.vb ├── Modules.vb ├── Operators.vb ├── Packages.vb ├── Preprocessors.vb ├── Program.vb ├── Properties.vb ├── QuerySyntax.vb ├── Statements.vb └── Structs.vb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.scip-dotnet/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.idea/.idea.scip-dotnet/.idea/encodings.xml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/NOTICE -------------------------------------------------------------------------------- /ScipDotnet.Tests/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet.Tests/Position.cs -------------------------------------------------------------------------------- /ScipDotnet.Tests/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet.Tests/Range.cs -------------------------------------------------------------------------------- /ScipDotnet.Tests/ScipDotnet.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet.Tests/ScipDotnet.Tests.csproj -------------------------------------------------------------------------------- /ScipDotnet.Tests/SnapshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet.Tests/SnapshotTests.cs -------------------------------------------------------------------------------- /ScipDotnet.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /ScipDotnet/IndexCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/IndexCommandHandler.cs -------------------------------------------------------------------------------- /ScipDotnet/IndexCommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/IndexCommandOptions.cs -------------------------------------------------------------------------------- /ScipDotnet/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE -------------------------------------------------------------------------------- /ScipDotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/Program.cs -------------------------------------------------------------------------------- /ScipDotnet/Scip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/Scip.cs -------------------------------------------------------------------------------- /ScipDotnet/ScipCSharpSyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipCSharpSyntaxWalker.cs -------------------------------------------------------------------------------- /ScipDotnet/ScipDocumentIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipDocumentIndexer.cs -------------------------------------------------------------------------------- /ScipDotnet/ScipDotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipDotnet.csproj -------------------------------------------------------------------------------- /ScipDotnet/ScipProjectIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipProjectIndexer.cs -------------------------------------------------------------------------------- /ScipDotnet/ScipSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipSymbol.cs -------------------------------------------------------------------------------- /ScipDotnet/ScipVisualBasicSyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/ScipDotnet/ScipVisualBasicSyntaxWalker.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/readme.md -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/release.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/renovate.json -------------------------------------------------------------------------------- /scip-dotnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/scip-dotnet.sln -------------------------------------------------------------------------------- /scip.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/scip.proto -------------------------------------------------------------------------------- /snapshots/input/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/.DS_Store -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication.sln -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/App.xaml -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/App.xaml.cs -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/AssemblyInfo.cs -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/MainWindow.xaml -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/MainWindow.xaml.cs -------------------------------------------------------------------------------- /snapshots/input/WpfApplication/WpfApplication/WpfApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/WpfApplication/WpfApplication/WpfApplication.csproj -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Classes.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Enums.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Events.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Expressions.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Fields.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/GlobalAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/GlobalAttributes.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Identifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Identifiers.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Interfaces.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Literals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Literals.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Main.csproj -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Methods.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Operators.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Packages.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Preprocessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Preprocessors.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Program.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Properties.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/QuerySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/QuerySyntax.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Records.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Statements.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/Main/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/Main/Structs.cs -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/CaseInsensitive.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/CaseInsensitive.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Classes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Classes.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Enums.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Events.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Events.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Expressions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Expressions.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Fields.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Fields.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/GlobalAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/GlobalAttributes.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Identifiers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Identifiers.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Interfaces.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Literals.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Literals.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Methods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Methods.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Modules.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Modules.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Operators.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Packages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Packages.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Preprocessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Preprocessors.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Program.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Properties.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Properties.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/QuerySyntax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/QuerySyntax.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Statements.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Statements.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/Structs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/Structs.vb -------------------------------------------------------------------------------- /snapshots/input/syntax/VBMain/VBMain.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/VBMain/VBMain.vbproj -------------------------------------------------------------------------------- /snapshots/input/syntax/syntax.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/input/syntax/syntax.sln -------------------------------------------------------------------------------- /snapshots/output-net6.0/WpfApplication/WpfApplication/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/WpfApplication/WpfApplication/App.xaml.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/WpfApplication/WpfApplication/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/WpfApplication/WpfApplication/AssemblyInfo.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/WpfApplication/WpfApplication/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/WpfApplication/WpfApplication/MainWindow.xaml.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Classes.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Enums.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Events.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Expressions.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Fields.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/GlobalAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/GlobalAttributes.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Identifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Identifiers.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Interfaces.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Literals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Literals.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Methods.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Operators.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Packages.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Preprocessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Preprocessors.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Program.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Properties.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/QuerySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/QuerySyntax.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Records.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Statements.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/Main/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/Main/Structs.cs -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/CaseInsensitive.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/CaseInsensitive.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Classes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Classes.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Enums.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Events.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Events.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Expressions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Expressions.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Fields.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Fields.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/GlobalAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/GlobalAttributes.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Identifiers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Identifiers.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Interfaces.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Literals.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Literals.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Methods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Methods.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Modules.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Modules.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Operators.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Packages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Packages.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Preprocessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Preprocessors.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Program.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Properties.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Properties.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/QuerySyntax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/QuerySyntax.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Statements.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Statements.vb -------------------------------------------------------------------------------- /snapshots/output-net6.0/syntax/VBMain/Structs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net6.0/syntax/VBMain/Structs.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Classes.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Enums.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Events.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Expressions.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Fields.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/GlobalAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/GlobalAttributes.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Identifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Identifiers.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Interfaces.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Literals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Literals.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Methods.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Operators.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Packages.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Preprocessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Preprocessors.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Program.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Properties.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/QuerySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/QuerySyntax.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Records.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Statements.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/Main/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/Main/Structs.cs -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/CaseInsensitive.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/CaseInsensitive.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Classes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Classes.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Enums.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Events.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Events.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Expressions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Expressions.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Fields.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Fields.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/GlobalAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/GlobalAttributes.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Identifiers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Identifiers.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Interfaces.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Literals.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Literals.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Methods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Methods.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Modules.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Modules.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Operators.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Packages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Packages.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Preprocessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Preprocessors.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Program.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Properties.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Properties.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/QuerySyntax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/QuerySyntax.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Statements.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Statements.vb -------------------------------------------------------------------------------- /snapshots/output-net7.0/syntax/VBMain/Structs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net7.0/syntax/VBMain/Structs.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Classes.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Enums.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Events.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Expressions.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Fields.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/GlobalAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/GlobalAttributes.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Identifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Identifiers.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Interfaces.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Literals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Literals.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Methods.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Operators.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Packages.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Preprocessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Preprocessors.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Program.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Properties.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/QuerySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/QuerySyntax.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Records.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Statements.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/Main/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/Main/Structs.cs -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/CaseInsensitive.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/CaseInsensitive.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Classes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Classes.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Enums.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Events.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Events.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Expressions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Expressions.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Fields.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Fields.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/GlobalAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/GlobalAttributes.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Identifiers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Identifiers.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Interfaces.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Literals.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Literals.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Methods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Methods.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Modules.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Modules.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Operators.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Packages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Packages.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Preprocessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Preprocessors.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Program.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Properties.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Properties.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/QuerySyntax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/QuerySyntax.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Statements.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Statements.vb -------------------------------------------------------------------------------- /snapshots/output-net8.0/syntax/VBMain/Structs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net8.0/syntax/VBMain/Structs.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Classes.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Enums.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Events.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Expressions.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Fields.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/GlobalAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/GlobalAttributes.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Identifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Identifiers.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Interfaces.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Literals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Literals.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Methods.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Operators.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Packages.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Preprocessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Preprocessors.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Program.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Properties.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/QuerySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/QuerySyntax.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Records.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Records.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Statements.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/Main/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/Main/Structs.cs -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/CaseInsensitive.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/CaseInsensitive.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Classes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Classes.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Enums.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Enums.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Events.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Events.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Expressions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Expressions.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Fields.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Fields.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/GlobalAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/GlobalAttributes.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Identifiers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Identifiers.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Interfaces.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Literals.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Literals.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Methods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Methods.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Modules.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Modules.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Operators.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Operators.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Packages.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Packages.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Preprocessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Preprocessors.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Program.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Properties.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Properties.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/QuerySyntax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/QuerySyntax.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Statements.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Statements.vb -------------------------------------------------------------------------------- /snapshots/output-net9.0/syntax/VBMain/Structs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-dotnet/HEAD/snapshots/output-net9.0/syntax/VBMain/Structs.vb --------------------------------------------------------------------------------