| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 V(removeLast, "removeLast") \ | 421 V(removeLast, "removeLast") \ |
| 422 V(add, "add") \ | 422 V(add, "add") \ |
| 423 V(ConstructorClosurePrefix, "new#") \ | 423 V(ConstructorClosurePrefix, "new#") \ |
| 424 V(_runExtension, "_runExtension") \ | 424 V(_runExtension, "_runExtension") \ |
| 425 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ | 425 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ |
| 426 V(DartLibrary, "dart.library.") \ | 426 V(DartLibrary, "dart.library.") \ |
| 427 V(DartLibraryMirrors, "dart.library.mirrors") \ | 427 V(DartLibraryMirrors, "dart.library.mirrors") \ |
| 428 V(_name, "_name") \ | 428 V(_name, "_name") \ |
| 429 V(_classRangeCheck, "_classRangeCheck") \ | 429 V(_classRangeCheck, "_classRangeCheck") \ |
| 430 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ | 430 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ |
| 431 V(_classRangeAssert, "_classRangeAssert") \ |
| 432 V(_classIdEqualsAssert, "_classIdEqualsAssert") \ |
| 431 V(GetRuntimeType, "get:runtimeType") \ | 433 V(GetRuntimeType, "get:runtimeType") \ |
| 432 V(HaveSameRuntimeType, "_haveSameRuntimeType") \ | 434 V(HaveSameRuntimeType, "_haveSameRuntimeType") \ |
| 433 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks") \ | 435 V(DartDeveloperCausalAsyncStacks, "dart.developer.causal_async_stacks") \ |
| 434 V(_AsyncStarListenHelper, "_asyncStarListenHelper") | 436 V(_AsyncStarListenHelper, "_asyncStarListenHelper") |
| 435 | 437 |
| 436 | 438 |
| 437 // Contains a list of frequently used strings in a canonicalized form. This | 439 // Contains a list of frequently used strings in a canonicalized form. This |
| 438 // list is kept in the vm_isolate in order to share the copy across isolates | 440 // list is kept in the vm_isolate in order to share the copy across isolates |
| 439 // without having to maintain copies in each isolate. | 441 // without having to maintain copies in each isolate. |
| 440 class Symbols : public AllStatic { | 442 class Symbols : public AllStatic { |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 friend class Serializer; | 692 friend class Serializer; |
| 691 friend class Deserializer; | 693 friend class Deserializer; |
| 692 friend class ApiMessageReader; | 694 friend class ApiMessageReader; |
| 693 | 695 |
| 694 DISALLOW_COPY_AND_ASSIGN(Symbols); | 696 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 695 }; | 697 }; |
| 696 | 698 |
| 697 } // namespace dart | 699 } // namespace dart |
| 698 | 700 |
| 699 #endif // RUNTIME_VM_SYMBOLS_H_ | 701 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |