├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── docs-feedback.yml ├── dependabot.yml └── workflows │ ├── dependencies │ ├── EcmaTC49.BuildGrammar.2.1.0.nupkg │ ├── EcmaTC49.Smarten.tar │ └── GrammarTestingEnv.tgz │ ├── do-not-merge-label-check.yml │ ├── grammar-validator.yaml │ ├── markdownlint-problem-matcher.json │ ├── markdownlint.yml │ ├── renumber-sections.yaml │ ├── smart-quotes.yaml │ ├── test-examples.yaml │ ├── tools-tests.yaml │ ├── update-on-merge.yaml │ └── word-converter.yaml ├── .gitignore ├── .markdownlint.json ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── admin ├── ECMA-TC49-TG2-New-Member-Orientation.md ├── Tasks-to-Produce-a-Word-Spec-for-Ecma.md ├── guidelines-for-spec-writing-and-formatting.md ├── v6-feature-tracker.md ├── v7-feature-tracker.md ├── v8-feature-tracker.md └── v9-feature-tracker.md ├── standard ├── README.md ├── arrays.md ├── attributes.md ├── basic-concepts.md ├── bibliography.md ├── classes.md ├── clauses.json ├── conformance.md ├── conversions.md ├── delegates.md ├── documentation-comments.md ├── enums.md ├── exceptions.md ├── expressions.md ├── foreword.md ├── general-description.md ├── grammar.md ├── interfaces.md ├── introduction.md ├── lexical-structure.md ├── namespaces.md ├── normative-references.md ├── patterns.md ├── portability-issues.md ├── ranges.md ├── scope.md ├── standard-library.md ├── statements.md ├── structs.md ├── terms-and-definitions.md ├── types.md ├── unsafe-code.md └── variables.md └── tools ├── .editorconfig ├── .gitignore ├── ExampleExtractor ├── Example.cs ├── ExampleAnnotationGrammar.g4 ├── ExampleExtractor.csproj ├── ExampleMetadata.cs ├── ExtractorAndTesterUsersGuide.md ├── Program.cs ├── Properties │ └── launchSettings.json └── Template.cs ├── ExampleFormatter ├── ExampleFormatter.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── ExampleTester.Tests ├── AssemblyInfo.cs ├── ExampleTester.Tests.csproj └── FastCsprojCompilationParserTests.cs ├── ExampleTester ├── CsprojParseResult.cs ├── ExampleTester.csproj ├── ExampleTests.cs ├── FastCsprojCompilationParser.cs ├── GeneratedExample.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── TesterConfiguration.cs ├── GrammarTesting └── Tests │ ├── Parsing │ ├── ReadMe.md │ └── Samples │ │ ├── ReadMe.md │ │ ├── v6 │ │ ├── AllInOneNoPreprocessor-v6-split │ │ │ ├── part-A │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-B │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-C │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-D │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-E │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-F │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-G │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-H │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-I │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-J │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-K │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-L │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-M │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-N │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-O │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-P │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-Q │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-R │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.stderr.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ ├── part-S │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ │ ├── sample.tokens.txt │ │ │ │ │ ├── sample.tree.red.txt │ │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ │ └── part-T │ │ │ │ ├── ReadMe.md │ │ │ │ ├── Reference │ │ │ │ ├── sample.gruntree.red.txt │ │ │ │ ├── sample.stderr.txt │ │ │ │ ├── sample.tokens.txt │ │ │ │ ├── sample.tree.red.txt │ │ │ │ └── sample.tree.svg │ │ │ │ ├── _Sample_Options.txt │ │ │ │ └── sample.cs │ │ └── RightShift │ │ │ ├── ReadMe.md │ │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ │ ├── _Sample_Options.txt │ │ │ └── sample.cs │ │ ├── v7 │ │ └── AllInOneNoPreprocessor-v7 │ │ │ ├── ReadMe.md │ │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ │ ├── _Sample_Options.txt │ │ │ └── sample.cs │ │ └── v8 │ │ ├── Declaration expressions │ │ ├── ReadMe.md │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ │ ├── Element Access │ │ ├── ReadMe.md │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ │ ├── Index & Range │ │ ├── ReadMe.md │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ │ ├── Null-forgiving │ │ ├── ReadMe.md │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ │ ├── TAL Query expressions │ │ ├── ReadMe.md │ │ ├── Reference │ │ │ ├── sample.gruntree.red.txt │ │ │ ├── sample.stderr.txt │ │ │ ├── sample.tokens.txt │ │ │ ├── sample.tree.red.txt │ │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ │ └── Type argument list │ │ ├── ReadMe.md │ │ ├── Reference │ │ ├── sample.gruntree.red.txt │ │ ├── sample.stderr.txt │ │ ├── sample.tokens.txt │ │ ├── sample.tree.red.txt │ │ └── sample.tree.svg │ │ ├── _Sample_Options.txt │ │ └── sample.cs │ └── ReadMe.md ├── MarkdownConverter.Tests ├── MarkdownConverter.Tests.csproj ├── MarkdownSourceConverterTests.cs ├── MarkdownSpecFileListTests.cs ├── antlr-with-line-comment.md ├── antlr-with-line-comment.xml ├── code-block-in-list.md ├── code-block-in-list.xml ├── emphasis-with-plural.md ├── emphasis-with-plural.xml ├── list-in-note.md ├── list-in-note.xml ├── markdown-lint.md ├── markdown-lint.xml ├── note.md ├── note.xml ├── table-in-list.md ├── table-in-list.xml ├── table-with-emphasis.md ├── table-with-emphasis.xml ├── table-with-pipe.md └── table-with-pipe.xml ├── MarkdownConverter ├── Converter │ ├── ConversionContext.cs │ ├── DiagnosticIDs.cs │ ├── FlatItem.cs │ ├── MarkdownSourceConverter.cs │ ├── MarkdownSpecConverter.cs │ └── Needle.cs ├── MarkdownConverter.csproj ├── OptionExtensions.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Spec │ ├── ItalicUse.cs │ ├── MarkdownSpec.cs │ ├── MarkdownUtilities.cs │ ├── Reporter.cs │ ├── SectionRef.cs │ ├── SourceLocation.cs │ ├── Span.cs │ └── TermRef.cs └── template.docx ├── README.md ├── StandardAnchorTags ├── DiagnosticIDs.cs ├── GenerateGrammar.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ReferenceUpdateProcessor.cs ├── SectionLink.cs ├── StandardAnchorTags.csproj └── TocSectionNumberBuilder.cs ├── Utilities ├── Clauses.cs ├── StatusCheckLogger.cs └── Utilities.csproj ├── example-templates ├── additional-files │ ├── A.cs │ ├── Acme.cs │ ├── Attr1Attribute.cs │ ├── Attr2Attribute.cs │ ├── Attr3Attribute.cs │ ├── AuthorAttribute.cs │ ├── BitArrayPartial1.cs │ ├── BitArrayPartial2.cs │ ├── BitArrayPartial3.cs │ ├── CForConversions.cs │ ├── Caller.cs │ ├── Component.cs │ ├── Control.cs │ ├── ConvertibleT.cs │ ├── Customer.cs │ ├── D.cs │ ├── DvoidNoArgs.cs │ ├── Extensions.cs │ ├── ExternAliasA.cs │ ├── ExternAliasB.cs │ ├── ExternAliasE.cs │ ├── ExternAliasN2.cs │ ├── ExternAliasR1.cs │ ├── ExternAliasX.cs │ ├── ExternAliasY.cs │ ├── Form.cs │ ├── Graphics.cs │ ├── HelpAttribute.cs │ ├── IA.cs │ ├── IB.cs │ ├── IBase.cs │ ├── IC.cs │ ├── IComparableT.cs │ ├── IControlControlTextBox1.cs │ ├── IControlControlTextBox2.cs │ ├── IDerived.cs │ ├── IKeyProviderT.cs │ ├── IProcess.cs │ ├── ITTT.cs │ ├── InterfaceMethods2A.cs │ ├── ItemListT.cs │ ├── MouseEventArgs.cs │ ├── MouseEventHandler.cs │ ├── MyBitArray.cs │ ├── MyGlobalTypes.cs │ ├── MyTaskMethodBuilderT.cs │ ├── N1.cs │ ├── N1N2.cs │ ├── N2.cs │ ├── Order.cs │ ├── PartialClass1ForSwitch.cs │ ├── PartialProgramForSwitch.cs │ ├── PartialProgramWithFGxy.cs │ ├── PersonWithName.cs │ ├── Point.cs │ ├── PointStruct.cs │ ├── PointStructWithToString.cs │ ├── PointWithAutoProps.cs │ ├── R.cs │ ├── README.md │ ├── Rectangle.cs │ ├── RectangleNoPoint.cs │ ├── RectangleStruct.cs │ ├── RectangleWithConstructorPointAllocation.cs │ ├── S.cs │ ├── S_Boxing.cs │ ├── SimpleAttribute.cs │ ├── Support1AsyncStreams.cs │ ├── Support2AsyncStreams.cs │ ├── SupportLocalVarDecl.cs │ ├── SupportNullForgivingExpressions.cs │ └── WidgetsLinkedList.cs ├── code-in-class-lib-without-using │ ├── Library.cs │ └── Project.csproj ├── code-in-class-lib │ ├── Library.cs │ └── Project.csproj ├── code-in-main-without-using │ ├── Program.cs │ └── Project.csproj ├── code-in-main │ ├── Program.cs │ └── Project.csproj ├── code-in-partial-class │ ├── Library.cs │ └── Project.csproj ├── extern-lib │ ├── Example.cs │ ├── ExampleProject.csproj │ ├── ExternN2.cs │ ├── ExternN2.csproj │ ├── ExternR1.cs │ ├── ExternR1.csproj │ ├── ExternX.cs │ ├── ExternX.csproj │ ├── ExternY.cs │ └── ExternY.csproj ├── standalone-console-without-using │ ├── Program.cs │ └── Project.csproj ├── standalone-console │ ├── Program.cs │ └── Project.csproj ├── standalone-lib-without-using │ ├── Library.cs │ └── Project.csproj └── standalone-lib │ ├── Library.cs │ └── Project.csproj ├── run-converter.sh ├── run-section-renumber.sh ├── run-smarten.sh ├── test-examples.sh ├── tools.sln └── validate-grammar.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/ISSUE_TEMPLATE/docs-feedback.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies/EcmaTC49.BuildGrammar.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/dependencies/EcmaTC49.BuildGrammar.2.1.0.nupkg -------------------------------------------------------------------------------- /.github/workflows/dependencies/EcmaTC49.Smarten.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/dependencies/EcmaTC49.Smarten.tar -------------------------------------------------------------------------------- /.github/workflows/dependencies/GrammarTestingEnv.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/dependencies/GrammarTestingEnv.tgz -------------------------------------------------------------------------------- /.github/workflows/do-not-merge-label-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/do-not-merge-label-check.yml -------------------------------------------------------------------------------- /.github/workflows/grammar-validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/grammar-validator.yaml -------------------------------------------------------------------------------- /.github/workflows/markdownlint-problem-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/markdownlint-problem-matcher.json -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.github/workflows/renumber-sections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/renumber-sections.yaml -------------------------------------------------------------------------------- /.github/workflows/smart-quotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/smart-quotes.yaml -------------------------------------------------------------------------------- /.github/workflows/test-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/test-examples.yaml -------------------------------------------------------------------------------- /.github/workflows/tools-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/tools-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/update-on-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/update-on-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/word-converter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.github/workflows/word-converter.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/README.md -------------------------------------------------------------------------------- /admin/ECMA-TC49-TG2-New-Member-Orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/ECMA-TC49-TG2-New-Member-Orientation.md -------------------------------------------------------------------------------- /admin/Tasks-to-Produce-a-Word-Spec-for-Ecma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/Tasks-to-Produce-a-Word-Spec-for-Ecma.md -------------------------------------------------------------------------------- /admin/guidelines-for-spec-writing-and-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/guidelines-for-spec-writing-and-formatting.md -------------------------------------------------------------------------------- /admin/v6-feature-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/v6-feature-tracker.md -------------------------------------------------------------------------------- /admin/v7-feature-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/v7-feature-tracker.md -------------------------------------------------------------------------------- /admin/v8-feature-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/v8-feature-tracker.md -------------------------------------------------------------------------------- /admin/v9-feature-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/admin/v9-feature-tracker.md -------------------------------------------------------------------------------- /standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/README.md -------------------------------------------------------------------------------- /standard/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/arrays.md -------------------------------------------------------------------------------- /standard/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/attributes.md -------------------------------------------------------------------------------- /standard/basic-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/basic-concepts.md -------------------------------------------------------------------------------- /standard/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/bibliography.md -------------------------------------------------------------------------------- /standard/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/classes.md -------------------------------------------------------------------------------- /standard/clauses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/clauses.json -------------------------------------------------------------------------------- /standard/conformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/conformance.md -------------------------------------------------------------------------------- /standard/conversions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/conversions.md -------------------------------------------------------------------------------- /standard/delegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/delegates.md -------------------------------------------------------------------------------- /standard/documentation-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/documentation-comments.md -------------------------------------------------------------------------------- /standard/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/enums.md -------------------------------------------------------------------------------- /standard/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/exceptions.md -------------------------------------------------------------------------------- /standard/expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/expressions.md -------------------------------------------------------------------------------- /standard/foreword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/foreword.md -------------------------------------------------------------------------------- /standard/general-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/general-description.md -------------------------------------------------------------------------------- /standard/grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/grammar.md -------------------------------------------------------------------------------- /standard/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/interfaces.md -------------------------------------------------------------------------------- /standard/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/introduction.md -------------------------------------------------------------------------------- /standard/lexical-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/lexical-structure.md -------------------------------------------------------------------------------- /standard/namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/namespaces.md -------------------------------------------------------------------------------- /standard/normative-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/normative-references.md -------------------------------------------------------------------------------- /standard/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/patterns.md -------------------------------------------------------------------------------- /standard/portability-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/portability-issues.md -------------------------------------------------------------------------------- /standard/ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/ranges.md -------------------------------------------------------------------------------- /standard/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/scope.md -------------------------------------------------------------------------------- /standard/standard-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/standard-library.md -------------------------------------------------------------------------------- /standard/statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/statements.md -------------------------------------------------------------------------------- /standard/structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/structs.md -------------------------------------------------------------------------------- /standard/terms-and-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/terms-and-definitions.md -------------------------------------------------------------------------------- /standard/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/types.md -------------------------------------------------------------------------------- /standard/unsafe-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/unsafe-code.md -------------------------------------------------------------------------------- /standard/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/standard/variables.md -------------------------------------------------------------------------------- /tools/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/.editorconfig -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | # This is created by one of the examples 2 | log.txt 3 | -------------------------------------------------------------------------------- /tools/ExampleExtractor/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/Example.cs -------------------------------------------------------------------------------- /tools/ExampleExtractor/ExampleAnnotationGrammar.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/ExampleAnnotationGrammar.g4 -------------------------------------------------------------------------------- /tools/ExampleExtractor/ExampleExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/ExampleExtractor.csproj -------------------------------------------------------------------------------- /tools/ExampleExtractor/ExampleMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/ExampleMetadata.cs -------------------------------------------------------------------------------- /tools/ExampleExtractor/ExtractorAndTesterUsersGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/ExtractorAndTesterUsersGuide.md -------------------------------------------------------------------------------- /tools/ExampleExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/Program.cs -------------------------------------------------------------------------------- /tools/ExampleExtractor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/ExampleExtractor/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleExtractor/Template.cs -------------------------------------------------------------------------------- /tools/ExampleFormatter/ExampleFormatter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleFormatter/ExampleFormatter.csproj -------------------------------------------------------------------------------- /tools/ExampleFormatter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleFormatter/Program.cs -------------------------------------------------------------------------------- /tools/ExampleFormatter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleFormatter/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/ExampleTester.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/ExampleTester.Tests/ExampleTester.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester.Tests/ExampleTester.Tests.csproj -------------------------------------------------------------------------------- /tools/ExampleTester.Tests/FastCsprojCompilationParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester.Tests/FastCsprojCompilationParserTests.cs -------------------------------------------------------------------------------- /tools/ExampleTester/CsprojParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/CsprojParseResult.cs -------------------------------------------------------------------------------- /tools/ExampleTester/ExampleTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/ExampleTester.csproj -------------------------------------------------------------------------------- /tools/ExampleTester/ExampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/ExampleTests.cs -------------------------------------------------------------------------------- /tools/ExampleTester/FastCsprojCompilationParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/FastCsprojCompilationParser.cs -------------------------------------------------------------------------------- /tools/ExampleTester/GeneratedExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/GeneratedExample.cs -------------------------------------------------------------------------------- /tools/ExampleTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/Program.cs -------------------------------------------------------------------------------- /tools/ExampleTester/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/ExampleTester/TesterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/ExampleTester/TesterConfiguration.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-A/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-B/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-C/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-D/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-E/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-F/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-G/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-H/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-I/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-J/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-K/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-L/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-M/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-N/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-O/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-P/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-Q/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-R/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-S/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/AllInOneNoPreprocessor-v6-split/part-T/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.stderr.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v6/RightShift/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v7/AllInOneNoPreprocessor-v7/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Sample: Declaration expressions 2 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Declaration expressions/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.stderr.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Element Access/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Sample: Index & Range expressions 2 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.stderr.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Index & Range/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.stderr.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Null-forgiving/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/TAL Query expressions/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/ReadMe.md -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.gruntree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.gruntree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tokens.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tree.red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tree.red.txt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/Reference/sample.tree.svg -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/_Sample_Options.txt: -------------------------------------------------------------------------------- 1 | -ms Rules -rt -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/Parsing/Samples/v8/Type argument list/sample.cs -------------------------------------------------------------------------------- /tools/GrammarTesting/Tests/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/GrammarTesting/Tests/ReadMe.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/MarkdownConverter.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/MarkdownConverter.Tests.csproj -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/MarkdownSourceConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/MarkdownSourceConverterTests.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/MarkdownSpecFileListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/MarkdownSpecFileListTests.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/antlr-with-line-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/antlr-with-line-comment.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/antlr-with-line-comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/antlr-with-line-comment.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/code-block-in-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/code-block-in-list.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/code-block-in-list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/code-block-in-list.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/emphasis-with-plural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/emphasis-with-plural.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/emphasis-with-plural.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/emphasis-with-plural.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/list-in-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/list-in-note.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/list-in-note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/list-in-note.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/markdown-lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/markdown-lint.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/markdown-lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/markdown-lint.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/note.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/note.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-in-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-in-list.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-in-list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-in-list.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-with-emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-with-emphasis.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-with-emphasis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-with-emphasis.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-with-pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-with-pipe.md -------------------------------------------------------------------------------- /tools/MarkdownConverter.Tests/table-with-pipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter.Tests/table-with-pipe.xml -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/ConversionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/ConversionContext.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/DiagnosticIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/DiagnosticIDs.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/FlatItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/FlatItem.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/MarkdownSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/MarkdownSourceConverter.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/MarkdownSpecConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/MarkdownSpecConverter.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Converter/Needle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Converter/Needle.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/MarkdownConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/MarkdownConverter.csproj -------------------------------------------------------------------------------- /tools/MarkdownConverter/OptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/OptionExtensions.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Program.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/ItalicUse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/ItalicUse.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/MarkdownSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/MarkdownSpec.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/MarkdownUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/MarkdownUtilities.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/Reporter.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/SectionRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/SectionRef.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/SourceLocation.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/Span.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/Spec/TermRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/Spec/TermRef.cs -------------------------------------------------------------------------------- /tools/MarkdownConverter/template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/MarkdownConverter/template.docx -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/StandardAnchorTags/DiagnosticIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/DiagnosticIDs.cs -------------------------------------------------------------------------------- /tools/StandardAnchorTags/GenerateGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/GenerateGrammar.cs -------------------------------------------------------------------------------- /tools/StandardAnchorTags/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/Program.cs -------------------------------------------------------------------------------- /tools/StandardAnchorTags/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/StandardAnchorTags/ReferenceUpdateProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/ReferenceUpdateProcessor.cs -------------------------------------------------------------------------------- /tools/StandardAnchorTags/SectionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/SectionLink.cs -------------------------------------------------------------------------------- /tools/StandardAnchorTags/StandardAnchorTags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/StandardAnchorTags.csproj -------------------------------------------------------------------------------- /tools/StandardAnchorTags/TocSectionNumberBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/StandardAnchorTags/TocSectionNumberBuilder.cs -------------------------------------------------------------------------------- /tools/Utilities/Clauses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/Utilities/Clauses.cs -------------------------------------------------------------------------------- /tools/Utilities/StatusCheckLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/Utilities/StatusCheckLogger.cs -------------------------------------------------------------------------------- /tools/Utilities/Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/Utilities/Utilities.csproj -------------------------------------------------------------------------------- /tools/example-templates/additional-files/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/A.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Acme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Acme.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Attr1Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Attr1Attribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Attr2Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Attr2Attribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Attr3Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Attr3Attribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/AuthorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/AuthorAttribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/BitArrayPartial1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/BitArrayPartial1.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/BitArrayPartial2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/BitArrayPartial2.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/BitArrayPartial3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/BitArrayPartial3.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/CForConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/CForConversions.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Caller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Caller.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Component.cs: -------------------------------------------------------------------------------- 1 | class Component 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Control.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ConvertibleT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/ConvertibleT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Customer.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/D.cs: -------------------------------------------------------------------------------- 1 | delegate void D(object sender, EventArgs e); 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/DvoidNoArgs.cs: -------------------------------------------------------------------------------- 1 | delegate void D(); 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Extensions.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasA.cs: -------------------------------------------------------------------------------- 1 | /* intentionally empty */ 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasB.cs: -------------------------------------------------------------------------------- 1 | /* intentionally empty */ 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasE.cs: -------------------------------------------------------------------------------- 1 | public class N { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasN2.cs: -------------------------------------------------------------------------------- 1 | public class A { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasR1.cs: -------------------------------------------------------------------------------- 1 | public class A { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/ExternAliasX.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ExternAliasY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/ExternAliasY.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Form.cs: -------------------------------------------------------------------------------- 1 | public class Form 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Graphics.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/HelpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/HelpAttribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IA.cs: -------------------------------------------------------------------------------- 1 | interface IA { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IB.cs: -------------------------------------------------------------------------------- 1 | interface IB { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IBase.cs: -------------------------------------------------------------------------------- 1 | interface IBase 2 | { 3 | int P { get; } 4 | } 5 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IC.cs: -------------------------------------------------------------------------------- 1 | interface IC { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IComparableT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/IComparableT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IControlControlTextBox1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/IControlControlTextBox1.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IControlControlTextBox2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/IControlControlTextBox2.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IDerived.cs: -------------------------------------------------------------------------------- 1 | interface IDerived : IBase 2 | { 3 | new int P(); 4 | } 5 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IKeyProviderT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/IKeyProviderT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/IProcess.cs: -------------------------------------------------------------------------------- 1 | interface IProcess { } 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ITTT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/ITTT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/InterfaceMethods2A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/InterfaceMethods2A.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/ItemListT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/ItemListT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/MouseEventArgs.cs: -------------------------------------------------------------------------------- 1 | delegate void MouseEventArgs(); 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/MouseEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/MouseEventHandler.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/MyBitArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/MyBitArray.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/MyGlobalTypes.cs: -------------------------------------------------------------------------------- 1 | namespace MyGlobalTypes 2 | { 3 | public class A { } 4 | } 5 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/MyTaskMethodBuilderT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/MyTaskMethodBuilderT.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/N1.cs: -------------------------------------------------------------------------------- 1 | namespace N1 2 | { 3 | public class A {} 4 | } 5 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/N1N2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/N1N2.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/N2.cs: -------------------------------------------------------------------------------- 1 | namespace N2 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Order.cs: -------------------------------------------------------------------------------- 1 | public class Order {} 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PartialClass1ForSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PartialClass1ForSwitch.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PartialProgramForSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PartialProgramForSwitch.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PartialProgramWithFGxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PartialProgramWithFGxy.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PersonWithName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PersonWithName.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Point.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PointStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PointStruct.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PointStructWithToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PointStructWithToString.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/PointWithAutoProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/PointWithAutoProps.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/R.cs: -------------------------------------------------------------------------------- 1 | delegate R Func(A arg); 2 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/README.md -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Rectangle.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/RectangleNoPoint.cs: -------------------------------------------------------------------------------- 1 | public class Rectangle 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/RectangleStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/RectangleStruct.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/RectangleWithConstructorPointAllocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/RectangleWithConstructorPointAllocation.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/S.cs: -------------------------------------------------------------------------------- 1 | public class S 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tools/example-templates/additional-files/S_Boxing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/S_Boxing.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/SimpleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/SimpleAttribute.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Support1AsyncStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Support1AsyncStreams.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/Support2AsyncStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/Support2AsyncStreams.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/SupportLocalVarDecl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/SupportLocalVarDecl.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/SupportNullForgivingExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/additional-files/SupportNullForgivingExpressions.cs -------------------------------------------------------------------------------- /tools/example-templates/additional-files/WidgetsLinkedList.cs: -------------------------------------------------------------------------------- 1 | namespace Widgets 2 | { 3 | public class LinkedList { } 4 | } 5 | -------------------------------------------------------------------------------- /tools/example-templates/code-in-class-lib-without-using/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-class-lib-without-using/Library.cs -------------------------------------------------------------------------------- /tools/example-templates/code-in-class-lib-without-using/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-class-lib-without-using/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/code-in-class-lib/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-class-lib/Library.cs -------------------------------------------------------------------------------- /tools/example-templates/code-in-class-lib/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-class-lib/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/code-in-main-without-using/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-main-without-using/Program.cs -------------------------------------------------------------------------------- /tools/example-templates/code-in-main-without-using/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-main-without-using/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/code-in-main/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-main/Program.cs -------------------------------------------------------------------------------- /tools/example-templates/code-in-main/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-main/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/code-in-partial-class/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-partial-class/Library.cs -------------------------------------------------------------------------------- /tools/example-templates/code-in-partial-class/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/code-in-partial-class/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/Example.cs: -------------------------------------------------------------------------------- 1 | $example-code 2 | -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExampleProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExampleProject.csproj -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternN2.cs: -------------------------------------------------------------------------------- 1 | public class A {} 2 | -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternN2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternN2.csproj -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternR1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternR1.cs -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternR1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternR1.csproj -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternX.cs -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternX.csproj -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternY.cs -------------------------------------------------------------------------------- /tools/example-templates/extern-lib/ExternY.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/extern-lib/ExternY.csproj -------------------------------------------------------------------------------- /tools/example-templates/standalone-console-without-using/Program.cs: -------------------------------------------------------------------------------- 1 | $example-code 2 | -------------------------------------------------------------------------------- /tools/example-templates/standalone-console-without-using/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-console-without-using/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/standalone-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-console/Program.cs -------------------------------------------------------------------------------- /tools/example-templates/standalone-console/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-console/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/standalone-lib-without-using/Library.cs: -------------------------------------------------------------------------------- 1 | $example-code 2 | -------------------------------------------------------------------------------- /tools/example-templates/standalone-lib-without-using/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-lib-without-using/Project.csproj -------------------------------------------------------------------------------- /tools/example-templates/standalone-lib/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-lib/Library.cs -------------------------------------------------------------------------------- /tools/example-templates/standalone-lib/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/example-templates/standalone-lib/Project.csproj -------------------------------------------------------------------------------- /tools/run-converter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/run-converter.sh -------------------------------------------------------------------------------- /tools/run-section-renumber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/run-section-renumber.sh -------------------------------------------------------------------------------- /tools/run-smarten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/run-smarten.sh -------------------------------------------------------------------------------- /tools/test-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/test-examples.sh -------------------------------------------------------------------------------- /tools/tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/tools.sln -------------------------------------------------------------------------------- /tools/validate-grammar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/csharpstandard/HEAD/tools/validate-grammar.sh --------------------------------------------------------------------------------