CompilerFeature.cs 552 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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,
        Iterator,
        LocalFunctions,
J
Jared Parsons 已提交
16
        Params,
17 18
        Var,
        Tuples,
19
        RefLocalsReturns,
A
AlekseyTs 已提交
20
        OutVar,
21
        Patterns,
22
        DefaultLiteral,
T
Ty Overby 已提交
23
        AsyncMain,
24 25
    }
}