CompilerFeature.cs 599 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

using System;
using Xunit;
using Xunit.Sdk;

namespace Microsoft.CodeAnalysis.Test.Utilities
{
    public enum CompilerFeature
    {
        Async,
        Dynamic,
        ExpressionBody,
14
        Determinism,
15 16
        Iterator,
        LocalFunctions,
J
Jared Parsons 已提交
17
        Params,
18 19
        Var,
        Tuples,
20
        RefLocalsReturns,
A
AlekseyTs 已提交
21
        OutVar,
22
        Patterns,
23
        DefaultLiteral,
T
Ty Overby 已提交
24
        AsyncMain,
25
        PrivateProtected,
26 27
    }
}