-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCategories.cs
33 lines (33 loc) · 1.69 KB
/
Categories.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace ExpressionTreeTestObjects {
public static class Categories {
public const string Unary = "Unary";
public const string NewArray = "New array";
public const string NewObject = "Object creation and initialization";
public const string Invocation = "Invocation";
public const string Method = "Method call";
public const string Member = "Member access (+ closed variables)";
public const string Literal = "Literal";
public const string Lambdas = "Lambda";
public const string Indexer = "Indexer";
public const string Defaults = "Defaults";
public const string Binary = "Binary";
public const string Try = "Try, Catch, Finally";
public const string SwitchCases = "Switch, CatchBlock";
public const string RuntimeVars = "Runtime variables";
public const string MemberBindings = "Member bindings";
public const string Loops = "Loops";
public const string Labels = "Labels";
public const string Gotos = "Gotos";
public const string Dynamics = "Dynamics";
public const string Quoted = "Quoted";
public const string DebugInfos = "DebugInfos";
public const string Conditionals = "Conditionals";
public const string Blocks = "Blocks";
public const string Constants = "Constants";
public const string TypeChecks = "Type check";
public const string EnumComparison = "Enum comparison";
public const string RefOut = "Ref/out parameter declartion and passing";
public const string ExtensionExpressions = "Extension expressions";
public const string CharComparison = "Comparison against char";
}
}