OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 library kernel.binary.tag; | 4 library kernel.binary.tag; |
5 | 5 |
6 class Tag { | 6 class Tag { |
7 static const int Nothing = 0; | 7 static const int Nothing = 0; |
8 static const int Something = 1; | 8 static const int Something = 1; |
9 | 9 |
10 static const int Class = 2; | 10 static const int Class = 2; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 static const int ContinueSwitchStatement = 72; | 81 static const int ContinueSwitchStatement = 72; |
82 static const int IfStatement = 73; | 82 static const int IfStatement = 73; |
83 static const int ReturnStatement = 74; | 83 static const int ReturnStatement = 74; |
84 static const int TryCatch = 75; | 84 static const int TryCatch = 75; |
85 static const int TryFinally = 76; | 85 static const int TryFinally = 76; |
86 static const int YieldStatement = 77; | 86 static const int YieldStatement = 77; |
87 static const int VariableDeclaration = 78; | 87 static const int VariableDeclaration = 78; |
88 static const int FunctionDeclaration = 79; | 88 static const int FunctionDeclaration = 79; |
89 static const int AsyncForInStatement = 80; | 89 static const int AsyncForInStatement = 80; |
90 | 90 |
| 91 static const int TypedefType = 87; |
91 static const int VectorType = 88; | 92 static const int VectorType = 88; |
92 static const int BottomType = 89; | 93 static const int BottomType = 89; |
93 static const int InvalidType = 90; | 94 static const int InvalidType = 90; |
94 static const int DynamicType = 91; | 95 static const int DynamicType = 91; |
95 static const int VoidType = 92; | 96 static const int VoidType = 92; |
96 static const int InterfaceType = 93; | 97 static const int InterfaceType = 93; |
97 static const int FunctionType = 94; | 98 static const int FunctionType = 94; |
98 static const int TypeParameterType = 95; | 99 static const int TypeParameterType = 95; |
99 static const int SimpleInterfaceType = 96; | 100 static const int SimpleInterfaceType = 96; |
100 static const int SimpleFunctionType = 97; | 101 static const int SimpleFunctionType = 97; |
(...skipping 14 matching lines...) Expand all Loading... |
115 static const int SpecializedPayloadMask = 0x7; // 00000111 | 116 static const int SpecializedPayloadMask = 0x7; // 00000111 |
116 | 117 |
117 static const int SpecializedVariableGet = 128; | 118 static const int SpecializedVariableGet = 128; |
118 static const int SpecializedVariableSet = 136; | 119 static const int SpecializedVariableSet = 136; |
119 static const int SpecializedIntLiteral = 144; | 120 static const int SpecializedIntLiteral = 144; |
120 | 121 |
121 static const int SpecializedIntLiteralBias = 3; | 122 static const int SpecializedIntLiteralBias = 3; |
122 | 123 |
123 static const int ProgramFile = 0x90ABCDEF; | 124 static const int ProgramFile = 0x90ABCDEF; |
124 } | 125 } |
OLD | NEW |