1
+ >>>
2
+ enum ErrorKind {
3
+ AbstractNotSync,
4
+ AsciiControlCharacter,
5
+ AsyncAsIdentifier,
6
+ AwaitAsIdentifier,
7
+ AwaitForNotAsync,
8
+ AwaitNotAsync,
9
+ BuiltInIdentifierAsType,
10
+ BuiltInIdentifierInDeclaration,
11
+ EmptyNamedParameterList,
12
+ EmptyOptionalParameterList,
13
+ Encoding,
14
+ ExpectedBlockToSkip,
15
+ ExpectedBody,
16
+ ExpectedButGot,
17
+ ExpectedClassBody,
18
+
19
+ /// This error code can be used to support non-compliant (with respect to
20
+ /// Dart Language Specification) Dart VM native clauses. See
21
+ /// [dart_vm_native.dart].
22
+ ExpectedClassBodyToSkip,
23
+
24
+ ExpectedDeclaration,
25
+ ExpectedExpression,
26
+ ExpectedFunctionBody,
27
+ ExpectedHexDigit,
28
+ ExpectedIdentifier,
29
+ ExpectedOpenParens,
30
+ ExpectedString,
31
+ ExpectedType,
32
+ ExtraneousModifier,
33
+ ExtraneousModifierReplace,
34
+ FactoryNotSync,
35
+ GeneratorReturnsValue,
36
+ InvalidAwaitFor,
37
+ InvalidInlineFunctionType,
38
+ InvalidSyncModifier,
39
+ InvalidVoid,
40
+ MissingExponent,
41
+ NonAsciiIdentifier,
42
+ NonAsciiWhitespace,
43
+ OnlyTry,
44
+ PositionalParameterWithEquals,
45
+ RequiredParameterWithDefault,
46
+ SetterNotSync,
47
+ StackOverflow,
48
+ UnexpectedDollarInString,
49
+ UnexpectedToken,
50
+ UnmatchedToken,
51
+ UnsupportedPrefixPlus,
52
+ UnterminatedComment,
53
+ UnterminatedString,
54
+ UnterminatedToken,
55
+ YieldAsIdentifier,
56
+ YieldNotGenerator,
57
+
58
+ Unspecified,
59
+ }
60
+ <<<
61
+ enum ErrorKind {
62
+ AbstractNotSync,
63
+ AsciiControlCharacter,
64
+ AsyncAsIdentifier,
65
+ AwaitAsIdentifier,
66
+ AwaitForNotAsync,
67
+ AwaitNotAsync,
68
+ BuiltInIdentifierAsType,
69
+ BuiltInIdentifierInDeclaration,
70
+ EmptyNamedParameterList,
71
+ EmptyOptionalParameterList,
72
+ Encoding,
73
+ ExpectedBlockToSkip,
74
+ ExpectedBody,
75
+ ExpectedButGot,
76
+ ExpectedClassBody,
77
+
78
+ /// This error code can be used to support non-compliant (with respect to
79
+ /// Dart Language Specification) Dart VM native clauses. See
80
+ /// [dart_vm_native.dart].
81
+ ExpectedClassBodyToSkip,
82
+
83
+ ExpectedDeclaration,
84
+ ExpectedExpression,
85
+ ExpectedFunctionBody,
86
+ ExpectedHexDigit,
87
+ ExpectedIdentifier,
88
+ ExpectedOpenParens,
89
+ ExpectedString,
90
+ ExpectedType,
91
+ ExtraneousModifier,
92
+ ExtraneousModifierReplace,
93
+ FactoryNotSync,
94
+ GeneratorReturnsValue,
95
+ InvalidAwaitFor,
96
+ InvalidInlineFunctionType,
97
+ InvalidSyncModifier,
98
+ InvalidVoid,
99
+ MissingExponent,
100
+ NonAsciiIdentifier,
101
+ NonAsciiWhitespace,
102
+ OnlyTry,
103
+ PositionalParameterWithEquals,
104
+ RequiredParameterWithDefault,
105
+ SetterNotSync,
106
+ StackOverflow,
107
+ UnexpectedDollarInString,
108
+ UnexpectedToken,
109
+ UnmatchedToken,
110
+ UnsupportedPrefixPlus,
111
+ UnterminatedComment,
112
+ UnterminatedString,
113
+ UnterminatedToken,
114
+ YieldAsIdentifier,
115
+ YieldNotGenerator,
116
+
117
+ Unspecified,
118
+ }
0 commit comments