| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 | 4 |
| 5 #ifndef RUNTIME_VM_KERNEL_BINARY_H_ | 5 #ifndef RUNTIME_VM_KERNEL_BINARY_H_ |
| 6 #define RUNTIME_VM_KERNEL_BINARY_H_ | 6 #define RUNTIME_VM_KERNEL_BINARY_H_ |
| 7 | 7 |
| 8 #if !defined(DART_PRECOMPILED_RUNTIME) | 8 #if !defined(DART_PRECOMPILED_RUNTIME) |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 kContinueSwitchStatement = 72, | 98 kContinueSwitchStatement = 72, |
| 99 kIfStatement = 73, | 99 kIfStatement = 73, |
| 100 kReturnStatement = 74, | 100 kReturnStatement = 74, |
| 101 kTryCatch = 75, | 101 kTryCatch = 75, |
| 102 kTryFinally = 76, | 102 kTryFinally = 76, |
| 103 kYieldStatement = 77, | 103 kYieldStatement = 77, |
| 104 kVariableDeclaration = 78, | 104 kVariableDeclaration = 78, |
| 105 kFunctionDeclaration = 79, | 105 kFunctionDeclaration = 79, |
| 106 kAsyncForInStatement = 80, | 106 kAsyncForInStatement = 80, |
| 107 | 107 |
| 108 kTypedefType = 87, | |
| 109 kVectorType = 88, | 108 kVectorType = 88, |
| 110 kInvalidType = 90, | 109 kInvalidType = 90, |
| 111 kDynamicType = 91, | 110 kDynamicType = 91, |
| 112 kVoidType = 92, | 111 kVoidType = 92, |
| 113 kInterfaceType = 93, | 112 kInterfaceType = 93, |
| 114 kFunctionType = 94, | 113 kFunctionType = 94, |
| 115 kTypeParameterType = 95, | 114 kTypeParameterType = 95, |
| 116 kSimpleInterfaceType = 96, | 115 kSimpleInterfaceType = 96, |
| 117 kSimpleFunctionType = 97, | 116 kSimpleFunctionType = 97, |
| 118 | 117 |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 Reader* reader_; | 556 Reader* reader_; |
| 558 TokenPosition min_; | 557 TokenPosition min_; |
| 559 TokenPosition max_; | 558 TokenPosition max_; |
| 560 }; | 559 }; |
| 561 | 560 |
| 562 } // namespace kernel | 561 } // namespace kernel |
| 563 } // namespace dart | 562 } // namespace dart |
| 564 | 563 |
| 565 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 564 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| 566 #endif // RUNTIME_VM_KERNEL_BINARY_H_ | 565 #endif // RUNTIME_VM_KERNEL_BINARY_H_ |
| OLD | NEW |