| 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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
| 6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_VM_SYMBOLS_H_ |
| 7 | 7 |
| 8 #include "vm/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 V(position_registers, ":position_registers") \ | 415 V(position_registers, ":position_registers") \ |
| 416 V(string_param, ":string_param") \ | 416 V(string_param, ":string_param") \ |
| 417 V(start_index_param, ":start_index_param") \ | 417 V(start_index_param, ":start_index_param") \ |
| 418 V(clear, "clear") \ | 418 V(clear, "clear") \ |
| 419 V(_wordCharacterMap, "_wordCharacterMap") \ | 419 V(_wordCharacterMap, "_wordCharacterMap") \ |
| 420 V(print, "print") \ | 420 V(print, "print") \ |
| 421 V(last, "last") \ | 421 V(last, "last") \ |
| 422 V(removeLast, "removeLast") \ | 422 V(removeLast, "removeLast") \ |
| 423 V(add, "add") \ | 423 V(add, "add") \ |
| 424 V(ConstructorClosurePrefix, "new#") \ | 424 V(ConstructorClosurePrefix, "new#") \ |
| 425 V(ConstructorStacktracePrefix, "new ") \ |
| 425 V(_runExtension, "_runExtension") \ | 426 V(_runExtension, "_runExtension") \ |
| 426 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ | 427 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ |
| 427 V(DartLibrary, "dart.library.") \ | 428 V(DartLibrary, "dart.library.") \ |
| 428 V(DartLibraryMirrors, "dart.library.mirrors") \ | 429 V(DartLibraryMirrors, "dart.library.mirrors") \ |
| 429 V(_name, "_name") \ | 430 V(_name, "_name") \ |
| 430 V(_classRangeCheck, "_classRangeCheck") \ | 431 V(_classRangeCheck, "_classRangeCheck") \ |
| 431 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ | 432 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ |
| 432 V(_classRangeAssert, "_classRangeAssert") \ | 433 V(_classRangeAssert, "_classRangeAssert") \ |
| 433 V(_classIdEqualsAssert, "_classIdEqualsAssert") \ | 434 V(_classIdEqualsAssert, "_classIdEqualsAssert") \ |
| 434 V(GetRuntimeType, "get:runtimeType") \ | 435 V(GetRuntimeType, "get:runtimeType") \ |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 friend class Serializer; | 694 friend class Serializer; |
| 694 friend class Deserializer; | 695 friend class Deserializer; |
| 695 friend class ApiMessageReader; | 696 friend class ApiMessageReader; |
| 696 | 697 |
| 697 DISALLOW_COPY_AND_ASSIGN(Symbols); | 698 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 698 }; | 699 }; |
| 699 | 700 |
| 700 } // namespace dart | 701 } // namespace dart |
| 701 | 702 |
| 702 #endif // RUNTIME_VM_SYMBOLS_H_ | 703 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |