| 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; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 static const int SymbolLiteral = 44; | 52 static const int SymbolLiteral = 44; |
| 53 static const int TypeLiteral = 45; | 53 static const int TypeLiteral = 45; |
| 54 static const int ThisExpression = 46; | 54 static const int ThisExpression = 46; |
| 55 static const int Rethrow = 47; | 55 static const int Rethrow = 47; |
| 56 static const int Throw = 48; | 56 static const int Throw = 48; |
| 57 static const int ListLiteral = 49; | 57 static const int ListLiteral = 49; |
| 58 static const int MapLiteral = 50; | 58 static const int MapLiteral = 50; |
| 59 static const int AwaitExpression = 51; | 59 static const int AwaitExpression = 51; |
| 60 static const int FunctionExpression = 52; | 60 static const int FunctionExpression = 52; |
| 61 static const int Let = 53; | 61 static const int Let = 53; |
| 62 static const int BlockExpression = 54; | |
| 63 static const int PositiveIntLiteral = 55; | 62 static const int PositiveIntLiteral = 55; |
| 64 static const int NegativeIntLiteral = 56; | 63 static const int NegativeIntLiteral = 56; |
| 65 static const int BigIntLiteral = 57; | 64 static const int BigIntLiteral = 57; |
| 66 static const int ConstListLiteral = 58; | 65 static const int ConstListLiteral = 58; |
| 67 static const int ConstMapLiteral = 59; | 66 static const int ConstMapLiteral = 59; |
| 68 | 67 |
| 69 static const int InvalidStatement = 60; | 68 static const int InvalidStatement = 60; |
| 70 static const int ExpressionStatement = 61; | 69 static const int ExpressionStatement = 61; |
| 71 static const int Block = 62; | 70 static const int Block = 62; |
| 72 static const int EmptyStatement = 63; | 71 static const int EmptyStatement = 63; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 static const int SpecializedPayloadMask = 0x7; // 00000111 | 112 static const int SpecializedPayloadMask = 0x7; // 00000111 |
| 114 | 113 |
| 115 static const int SpecializedVariableGet = 128; | 114 static const int SpecializedVariableGet = 128; |
| 116 static const int SpecializedVariableSet = 136; | 115 static const int SpecializedVariableSet = 136; |
| 117 static const int SpecializedIntLiteral = 144; | 116 static const int SpecializedIntLiteral = 144; |
| 118 | 117 |
| 119 static const int SpecializedIntLiteralBias = 3; | 118 static const int SpecializedIntLiteralBias = 3; |
| 120 | 119 |
| 121 static const int ProgramFile = 0x90ABCDEF; | 120 static const int ProgramFile = 0x90ABCDEF; |
| 122 } | 121 } |
| OLD | NEW |