File: Classification\SyntacticClassifierTests_Preprocessor.cs
Web Access
Project: ..\..\..\src\EditorFeatures\CSharpTest\Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests.csproj (Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Remote.Testing;
using Microsoft.CodeAnalysis.Test.Utilities;
using Roslyn.Test.Utilities;
using Xunit;
using static Microsoft.CodeAnalysis.Editor.UnitTests.Classification.FormattedClassifications;
 
namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Classification
{
    [Trait(Traits.Feature, Traits.Features.Classification)]
    public partial class SyntacticClassifierTests
    {
        [Theory, CombinatorialData]
        public async Task PP_IfTrue(TestHost testHost)
        {
            var code =
@"#if true
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Keyword("true"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfTrueWithComment(TestHost testHost)
        {
            var code =
@"#if true //Goo
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Keyword("true"),
                Comment("//Goo"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfFalse(TestHost testHost)
        {
            var code =
@"#if false
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Keyword("false"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfGOO(TestHost testHost)
        {
            var code =
@"#if GOO
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("GOO"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfNotTrue(TestHost testHost)
        {
            var code =
@"#if !true
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Operators.Exclamation,
                Keyword("true"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfNotFalse(TestHost testHost)
        {
            var code =
@"#if !false
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Operators.Exclamation,
                Keyword("false"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfNotGOO(TestHost testHost)
        {
            var code =
@"#if !GOO
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Operators.Exclamation,
                Identifier("GOO"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfTrueWithParens(TestHost testHost)
        {
            var code =
@"#if (true)
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Punctuation.OpenParen,
                Keyword("true"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfFalseWithParens(TestHost testHost)
        {
            var code =
@"#if (false)
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Punctuation.OpenParen,
                Keyword("false"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfGOOWithParens(TestHost testHost)
        {
            var code =
@"#if (GOO)
#endif";
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Punctuation.OpenParen,
                Identifier("GOO"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfOrExpression(TestHost testHost)
        {
            var code =
@"#if GOO || BAR
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("GOO"),
                Operators.BarBar,
                Identifier("BAR"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfAndExpression(TestHost testHost)
        {
            var code =
@"#if GOO && BAR
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("GOO"),
                Operators.AmpersandAmpersand,
                Identifier("BAR"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfOrAndExpression(TestHost testHost)
        {
            var code =
@"#if GOO || BAR && BAZ
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("GOO"),
                Operators.BarBar,
                Identifier("BAR"),
                Operators.AmpersandAmpersand,
                Identifier("BAZ"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfOrExpressionWithParens(TestHost testHost)
        {
            var code =
@"#if (GOO || BAR)
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Punctuation.OpenParen,
                Identifier("GOO"),
                Operators.BarBar,
                Identifier("BAR"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfAndExpressionWithParens(TestHost testHost)
        {
            var code =
@"#if (GOO && BAR)
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Punctuation.OpenParen,
                Identifier("GOO"),
                Operators.AmpersandAmpersand,
                Identifier("BAR"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfOrAndExpressionWithParens(TestHost testHost)
        {
            var code =
@"#if GOO || (BAR && BAZ)
#endif";
 
            await TestInMethodAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("GOO"),
                Operators.BarBar,
                Punctuation.OpenParen,
                Identifier("BAR"),
                Operators.AmpersandAmpersand,
                Identifier("BAZ"),
                Punctuation.CloseParen,
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If1(TestHost testHost)
        {
            await TestAsync("#if goo",
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If2(TestHost testHost)
        {
            await TestAsync(" #if goo",
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If3(TestHost testHost)
        {
            var code =
@"#if goo
#endif";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Identifier("goo"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If4(TestHost testHost)
        {
            var code =
@"#if
#endif";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If5(TestHost testHost)
        {
            var code =
@"#if
aoeu
aoeu
#endif";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Inactive(@"aoeu
aoeu
"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If6(TestHost testHost)
        {
            var code =
@"#if
#else
aeu";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                PPKeyword("#"),
                PPKeyword("else"),
                Identifier("aeu"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_If7(TestHost testHost)
        {
            var code =
@"#if
#else
#endif
aeu";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                PPKeyword("#"),
                PPKeyword("else"),
                PPKeyword("#"),
                PPKeyword("endif"),
                Identifier("aeu"));
        }
 
        [Theory, WorkItem("https://github.com/dotnet/roslyn/issues/44423")]
        [CombinatorialData]
        public async Task PP_If8(bool script, TestHost testHost)
        {
            var code =
@"#if
#else
aoeu
aoeu
aou
#endif
aeu";
 
            var parseOptions = script ? Options.Script : null;
 
            await TestAsync(
                code,
                code,
                testHost,
                parseOptions,
                PPKeyword("#"),
                PPKeyword("if"),
                PPKeyword("#"),
                PPKeyword("else"),
                Identifier("aoeu"),
                script ? Field("aoeu") : Local("aoeu"),
                Identifier("aou"),
                PPKeyword("#"),
                PPKeyword("endif"),
                script ? Field("aeu") : Identifier("aeu"));
        }
 
        [Theory, WorkItem("https://github.com/dotnet/roslyn/issues/44423")]
        [CombinatorialData]
        public async Task PP_If9(bool script, TestHost testHost)
        {
            var code =
@"#if //Goo1
#else //Goo2
aoeu
aoeu
aou
#endif //Goo3
aeu";
 
            var parseOptions = script ? Options.Script : null;
 
            await TestAsync(
                code,
                code,
                testHost,
                parseOptions,
                PPKeyword("#"),
                PPKeyword("if"),
                Comment("//Goo1"),
                PPKeyword("#"),
                PPKeyword("else"),
                Comment("//Goo2"),
                Identifier("aoeu"),
                script ? Field("aoeu") : Local("aoeu"),
                Identifier("aou"),
                PPKeyword("#"),
                PPKeyword("endif"),
                Comment("//Goo3"),
                script ? Field("aeu") : Identifier("aeu"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_Region1(TestHost testHost)
        {
            await TestAsync("#region Goo",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPText("Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_Region2(TestHost testHost)
        {
            await TestAsync("   #region goo",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPText("goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_EndRegion1(TestHost testHost)
        {
            await TestAsync("#endregion",
                testHost,
                PPKeyword("#"),
                PPKeyword("endregion"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_EndRegion2(TestHost testHost)
        {
            await TestAsync("   #endregion",
                testHost,
                PPKeyword("#"),
                PPKeyword("endregion"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_EndRegion3(TestHost testHost)
        {
            await TestAsync("#endregion adsf",
                testHost,
                PPKeyword("#"),
                PPKeyword("endregion"),
                PPText("adsf"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_EndRegion4(TestHost testHost)
        {
            await TestAsync("   #endregion adsf",
                testHost,
                PPKeyword("#"),
                PPKeyword("endregion"),
                PPText("adsf"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_RegionEndRegion1(TestHost testHost)
        {
            await TestAsync(
@"#region
#endregion",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPKeyword("#"),
                PPKeyword("endregion"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_CommentAfterRegion1(TestHost testHost)
        {
            await TestAsync(
@"#region adsf //comment
#endregion",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPText("adsf //comment"),
                PPKeyword("#"),
                PPKeyword("endregion"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_CommentAfterRegion2(TestHost testHost)
        {
            await TestAsync(
@"#region //comment
#endregion",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPText("//comment"),
                PPKeyword("#"),
                PPKeyword("endregion"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_CommentAfterEndRegion1(TestHost testHost)
        {
            await TestAsync(
@"#region
#endregion adsf //comment",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPKeyword("#"),
                PPKeyword("endregion"),
                PPText("adsf //comment"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_CommentAfterEndRegion2(TestHost testHost)
        {
            await TestAsync(
@"#region
#endregion //comment",
                testHost,
                PPKeyword("#"),
                PPKeyword("region"),
                PPKeyword("#"),
                PPKeyword("endregion"),
                Comment("//comment"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_DeclarationDirectives(TestHost testHost)
        {
            await TestAsync(
@"#define A
#undef B",
                testHost,
                PPKeyword("#"),
                PPKeyword("define"),
                Identifier("A"),
                PPKeyword("#"),
                PPKeyword("undef"),
                Identifier("B"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_IfElseEndIfDirectives(TestHost testHost)
        {
            var code =
@"#if true
#elif DEBUG
#else
#endif";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("if"),
                Keyword("true"),
                PPKeyword("#"),
                PPKeyword("elif"),
                Identifier("DEBUG"),
                PPKeyword("#"),
                PPKeyword("else"),
                PPKeyword("#"),
                PPKeyword("endif"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_DefineDirective(TestHost testHost)
        {
            var code = @"#define GOO";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("define"),
                Identifier("GOO"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_DefineDirectiveWithCommentAndNoName(TestHost testHost)
        {
            var code = @"#define //Goo";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("define"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_DefineDirectiveWithComment(TestHost testHost)
        {
            var code = @"#define GOO //Goo";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("define"),
                Identifier("GOO"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_UndefDirectives(TestHost testHost)
        {
            var code = @"#undef GOO";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("undef"),
                Identifier("GOO"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_UndefDirectiveWithCommentAndNoName(TestHost testHost)
        {
            var code = @"#undef //Goo";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("undef"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_UndefDirectiveWithComment(TestHost testHost)
        {
            var code = @"#undef GOO //Goo";
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("undef"),
                Identifier("GOO"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_ErrorDirective(TestHost testHost)
        {
            var code = @"#error GOO";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("error"),
                PPText("GOO"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_ErrorDirectiveWithComment(TestHost testHost)
        {
            var code = @"#error GOO //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("error"),
                PPText("GOO //Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_WarningDirective(TestHost testHost)
        {
            var code = @"#warning GOO";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("warning"),
                PPText("GOO"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_WarningDirectiveWithComment(TestHost testHost)
        {
            var code = @"#warning GOO //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("warning"),
                PPText("GOO //Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineHidden(TestHost testHost)
        {
            var code = @"#line hidden";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                PPKeyword("hidden"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineHiddenWithComment(TestHost testHost)
        {
            var code = @"#line hidden //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                PPKeyword("hidden"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineDefault(TestHost testHost)
        {
            var code = @"#line default";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                PPKeyword("default"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineDefaultWithComment(TestHost testHost)
        {
            var code = @"#line default //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                PPKeyword("default"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineNumber(TestHost testHost)
        {
            var code = @"#line 100";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Number("100"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineNumberWithComment(TestHost testHost)
        {
            var code = @"#line 100 //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Number("100"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineNumberWithFilename(TestHost testHost)
        {
            var code = @"#line 100 ""C:\Goo""";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Number("100"),
                String("\"C:\\Goo\""));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineNumberWithFilenameAndComment(TestHost testHost)
        {
            var code = @"#line 100 ""C:\Goo"" //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Number("100"),
                String("\"C:\\Goo\""),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineSpanWithCharacterOffset(TestHost testHost)
        {
            var code = @"#line (1, 2) - (3, 4) 5 ""file.txt""";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Punctuation.OpenParen,
                Number("1"),
                Punctuation.Comma,
                Number("2"),
                Punctuation.CloseParen,
                Operators.Minus,
                Punctuation.OpenParen,
                Number("3"),
                Punctuation.Comma,
                Number("4"),
                Punctuation.CloseParen,
                Number("5"),
                String("\"file.txt\""));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_LineSpanWithComment(TestHost testHost)
        {
            var code = @"#line (1, 2) - (3, 4) """" //comment";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("line"),
                Punctuation.OpenParen,
                Number("1"),
                Punctuation.Comma,
                Number("2"),
                Punctuation.CloseParen,
                Operators.Minus,
                Punctuation.OpenParen,
                Number("3"),
                Punctuation.Comma,
                Number("4"),
                Punctuation.CloseParen,
                String("\"\""),
                Comment("//comment"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnable(TestHost testHost)
        {
            var code = @"#nullable enable";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnableWithComment(TestHost testHost)
        {
            var code = @"#nullable enable //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnableWarnings(TestHost testHost)
        {
            var code = @"#nullable enable warnings";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"),
                PPKeyword("warnings"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnableWarningsWithComment(TestHost testHost)
        {
            var code = @"#nullable enable warnings //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"),
                PPKeyword("warnings"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnableAnnotations(TestHost testHost)
        {
            var code = @"#nullable enable annotations";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"),
                PPKeyword("annotations"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableEnableAnnotationsWithComment(TestHost testHost)
        {
            var code = @"#nullable enable annotations //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("enable"),
                PPKeyword("annotations"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableDisable(TestHost testHost)
        {
            var code = @"#nullable disable";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("disable"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_NullableDisableWithComment(TestHost testHost)
        {
            var code = @"#nullable disable //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("nullable"),
                PPKeyword("disable"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaChecksum1(TestHost testHost)
        {
            await TestAsync(
@"#pragma checksum stuff",
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("checksum"),
                PPText("stuff"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaChecksum2(TestHost testHost)
        {
            await TestAsync(
@"#pragma checksum ""file.txt"" ""{00000000-0000-0000-0000-000000000000}"" ""2453""",
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("checksum"),
                String("\"file.txt\""),
                String("\"{00000000-0000-0000-0000-000000000000}\""),
                String("\"2453\""));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaChecksum3(TestHost testHost)
        {
            await TestAsync(
@"#pragma checksum ""file.txt"" ""{00000000-0000-0000-0000-000000000000}"" ""2453"" // Goo",
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("checksum"),
                String("\"file.txt\""),
                String("\"{00000000-0000-0000-0000-000000000000}\""),
                String("\"2453\""),
                Comment("// Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningDisableOne(TestHost testHost)
        {
            var code = @"#pragma warning disable 100";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("disable"),
                Number("100"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningDisableOneWithComment(TestHost testHost)
        {
            var code = @"#pragma warning disable 100 //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("disable"),
                Number("100"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        [WorkItem("https://github.com/dotnet/roslyn/issues/30783")]
        public async Task PP_PragmaWarningDisableAllWithComment(TestHost testHost)
        {
            var code = @"#pragma warning disable //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("disable"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningRestoreOne(TestHost testHost)
        {
            var code = @"#pragma warning restore 100";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("restore"),
                Number("100"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningRestoreOneWithComment(TestHost testHost)
        {
            var code = @"#pragma warning restore 100 //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("restore"),
                Number("100"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        [WorkItem("https://github.com/dotnet/roslyn/issues/30783")]
        public async Task PP_PragmaWarningRestoreAllWithComment(TestHost testHost)
        {
            var code = @"#pragma warning restore //Goo";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("restore"),
                Comment("//Goo"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningDisableTwo(TestHost testHost)
        {
            var code = @"#pragma warning disable 100, 101";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("disable"),
                Number("100"),
                Punctuation.Comma,
                Number("101"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningRestoreTwo(TestHost testHost)
        {
            var code = @"#pragma warning restore 100, 101";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("restore"),
                Number("100"),
                Punctuation.Comma,
                Number("101"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningDisableThree(TestHost testHost)
        {
            var code = @"#pragma warning disable 100, 101, 102";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("disable"),
                Number("100"),
                Punctuation.Comma,
                Number("101"),
                Punctuation.Comma,
                Number("102"));
        }
 
        [Theory, CombinatorialData]
        public async Task PP_PragmaWarningRestoreThree(TestHost testHost)
        {
            var code = @"#pragma warning restore 100, 101, 102";
 
            await TestAsync(code,
                testHost,
                PPKeyword("#"),
                PPKeyword("pragma"),
                PPKeyword("warning"),
                PPKeyword("restore"),
                Number("100"),
                Punctuation.Comma,
                Number("101"),
                Punctuation.Comma,
                Number("102"));
        }
 
        [Theory, CombinatorialData]
        public async Task DiscardInOutDeclaration(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"M2(out var _);",
                testHost: testHost,
 expected: Classifications(Identifier("M2"), Punctuation.OpenParen, Keyword("out"), Identifier("var"),
                    Keyword("_"), Punctuation.CloseParen, Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task DiscardInCasePattern(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"switch (1) { case int _: }",
                testHost: testHost,
 expected: Classifications(ControlKeyword("switch"), Punctuation.OpenParen, Number("1"), Punctuation.CloseParen,
                    Punctuation.OpenCurly, ControlKeyword("case"), Keyword("int"), Keyword("_"), Punctuation.Colon, Punctuation.CloseCurly));
        }
 
        [Theory, CombinatorialData]
        public async Task DiscardInDeconstruction(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"var (x, _) = (1, 2);",
                testHost: testHost,
 expected: Classifications(Identifier("var"), Punctuation.OpenParen, Local("x"), Punctuation.Comma,
                    Keyword("_"), Punctuation.CloseParen, Operators.Equals, Punctuation.OpenParen, Number("1"),
                    Punctuation.Comma, Number("2"), Punctuation.CloseParen, Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task DiscardInDeconstruction2(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"(var _, var _) = (1, 2);",
                testHost: testHost,
 expected: Classifications(Punctuation.OpenParen, Identifier("var"), Keyword("_"), Punctuation.Comma,
                    Identifier("var"), Keyword("_"), Punctuation.CloseParen, Operators.Equals, Punctuation.OpenParen,
                    Number("1"), Punctuation.Comma, Number("2"), Punctuation.CloseParen, Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task ShortDiscardInDeconstruction(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"int x; (_, x) = (1, 2);",
                testHost: testHost,
 expected: Classifications(Keyword("int"), Local("x"), Punctuation.Semicolon, Punctuation.OpenParen,
                    Identifier("_"), Punctuation.Comma, Identifier("x"), Punctuation.CloseParen, Operators.Equals,
                    Punctuation.OpenParen, Number("1"), Punctuation.Comma, Number("2"), Punctuation.CloseParen,
                    Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task ShortDiscardInOutDeclaration(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"M2(out _);",
                testHost: testHost,
 expected: Classifications(Identifier("M2"), Punctuation.OpenParen, Keyword("out"), Identifier("_"), Punctuation.CloseParen,
                    Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task ShortDiscardInAssignment(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"_ = 1;",
                testHost: testHost,
 expected: Classifications(Identifier("_"), Operators.Equals, Number("1"), Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task UnderscoreInLambda(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"x = (_) => 1;",
                testHost: testHost,
 expected: Classifications(Identifier("x"), Operators.Equals, Punctuation.OpenParen, Parameter("_"), Punctuation.CloseParen,
                    Operators.EqualsGreaterThan, Number("1"), Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task DiscardInLambda(TestHost testHost)
        {
            await TestInMethodAsync(
                code: @"x = (_, _) => 1;",
                testHost: testHost,
 expected: Classifications(Identifier("x"), Operators.Equals, Punctuation.OpenParen, Parameter("_"), Punctuation.Comma, Parameter("_"), Punctuation.CloseParen,
                    Operators.EqualsGreaterThan, Number("1"), Punctuation.Semicolon));
        }
 
        [Theory, CombinatorialData]
        public async Task UnderscoreInAssignment(TestHost testHost)
        {
            await TestInMethodAsync(code: @"int _; _ = 1;",
                testHost: testHost,
 expected: Classifications(Keyword("int"), Local("_"), Punctuation.Semicolon, Identifier("_"), Operators.Equals,
                    Number("1"), Punctuation.Semicolon));
        }
    }
}