| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 VM_SNAPSHOT_IDS_H_ | 5 #ifndef VM_SNAPSHOT_IDS_H_ |
| 6 #define VM_SNAPSHOT_IDS_H_ | 6 #define VM_SNAPSHOT_IDS_H_ |
| 7 | 7 |
| 8 #include "vm/raw_object.h" | 8 #include "vm/raw_object.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 kFunctionType, | 35 kFunctionType, |
| 36 kNumberType, | 36 kNumberType, |
| 37 kSmiType, | 37 kSmiType, |
| 38 kMintType, | 38 kMintType, |
| 39 kDoubleType, | 39 kDoubleType, |
| 40 kIntType, | 40 kIntType, |
| 41 kBoolType, | 41 kBoolType, |
| 42 kStringType, | 42 kStringType, |
| 43 kArrayType, | 43 kArrayType, |
| 44 | 44 |
| 45 kExtractorParameterTypes, |
| 46 kExtractorParameterNames, |
| 47 kEmptyContextScopeObject, |
| 48 kImplicitClosureScopeObject, |
| 49 |
| 45 kInstanceObjectId, | 50 kInstanceObjectId, |
| 46 kStaticImplicitClosureObjectId, | 51 kStaticImplicitClosureObjectId, |
| 47 kMaxPredefinedObjectIds, | 52 kMaxPredefinedObjectIds, |
| 48 kInvalidIndex = -1, | 53 kInvalidIndex = -1, |
| 49 }; | 54 }; |
| 50 | 55 |
| 51 } // namespace dart | 56 } // namespace dart |
| 52 | 57 |
| 53 #endif // VM_SNAPSHOT_IDS_H_ | 58 #endif // VM_SNAPSHOT_IDS_H_ |
| OLD | NEW |