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 NormalClass = 2; | 10 static const int NormalClass = 2; |
11 static const int MixinClass = 3; | 11 static const int MixinClass = 3; |
12 | 12 |
13 static const int Field = 4; | 13 static const int Field = 4; |
14 static const int Constructor = 5; | 14 static const int Constructor = 5; |
15 static const int Procedure = 6; | 15 static const int Procedure = 6; |
16 | 16 |
17 static const int InvalidInitializer = 7; | 17 static const int InvalidInitializer = 7; |
18 static const int FieldInitializer = 8; | 18 static const int FieldInitializer = 8; |
19 static const int SuperInitializer = 9; | 19 static const int SuperInitializer = 9; |
20 static const int RedirectingInitializer = 10; | 20 static const int RedirectingInitializer = 10; |
21 static const int LocalInitializer = 11; | 21 static const int LocalInitializer = 11; |
22 | 22 |
| 23 static const int CheckLibraryIsLoaded = 13; |
| 24 static const int LoadLibrary = 14; |
23 static const int DirectPropertyGet = 15; | 25 static const int DirectPropertyGet = 15; |
24 static const int DirectPropertySet = 16; | 26 static const int DirectPropertySet = 16; |
25 static const int DirectMethodInvocation = 17; | 27 static const int DirectMethodInvocation = 17; |
26 static const int ConstStaticInvocation = 18; | 28 static const int ConstStaticInvocation = 18; |
27 static const int InvalidExpression = 19; | 29 static const int InvalidExpression = 19; |
28 static const int VariableGet = 20; | 30 static const int VariableGet = 20; |
29 static const int VariableSet = 21; | 31 static const int VariableSet = 21; |
30 static const int PropertyGet = 22; | 32 static const int PropertyGet = 22; |
31 static const int PropertySet = 23; | 33 static const int PropertySet = 23; |
32 static const int SuperPropertyGet = 24; | 34 static const int SuperPropertyGet = 24; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 static const int SpecializedPayloadMask = 0x7; // 00000111 | 114 static const int SpecializedPayloadMask = 0x7; // 00000111 |
113 | 115 |
114 static const int SpecializedVariableGet = 128; | 116 static const int SpecializedVariableGet = 128; |
115 static const int SpecializedVariableSet = 136; | 117 static const int SpecializedVariableSet = 136; |
116 static const int SpecializedIntLiteral = 144; | 118 static const int SpecializedIntLiteral = 144; |
117 | 119 |
118 static const int SpecializedIntLiteralBias = 3; | 120 static const int SpecializedIntLiteralBias = 3; |
119 | 121 |
120 static const int ProgramFile = 0x90ABCDEF; | 122 static const int ProgramFile = 0x90ABCDEF; |
121 } | 123 } |
OLD | NEW |