| 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_SYMBOLS_H_ | 5 #ifndef VM_SYMBOLS_H_ |
| 6 #define VM_SYMBOLS_H_ | 6 #define VM_SYMBOLS_H_ |
| 7 | 7 |
| 8 #include "vm/object.h" | 8 #include "vm/object.h" |
| 9 #include "vm/snapshot_ids.h" | 9 #include "vm/snapshot_ids.h" |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 V(Interpolate, "_interpolate") \ | 72 V(Interpolate, "_interpolate") \ |
| 73 V(InterpolateSingle, "_interpolateSingle") \ | 73 V(InterpolateSingle, "_interpolateSingle") \ |
| 74 V(Iterator, "iterator") \ | 74 V(Iterator, "iterator") \ |
| 75 V(NoSuchMethod, "noSuchMethod") \ | 75 V(NoSuchMethod, "noSuchMethod") \ |
| 76 V(CurrentContextVar, ":current_context_var") \ | 76 V(CurrentContextVar, ":current_context_var") \ |
| 77 V(SavedTryContextVar, ":saved_try_context_var") \ | 77 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 78 V(ExceptionParameter, ":exception") \ | 78 V(ExceptionParameter, ":exception") \ |
| 79 V(StackTraceParameter, ":stack_trace") \ | 79 V(StackTraceParameter, ":stack_trace") \ |
| 80 V(ExceptionVar, ":exception_var") \ | 80 V(ExceptionVar, ":exception_var") \ |
| 81 V(StackTraceVar, ":stack_trace_var") \ | 81 V(StackTraceVar, ":stack_trace_var") \ |
| 82 V(SavedExceptionVar, ":saved_exception_var") \ |
| 83 V(SavedStackTraceVar, ":saved_stack_trace_var") \ |
| 82 V(ListLiteralElement, "list literal element") \ | 84 V(ListLiteralElement, "list literal element") \ |
| 83 V(ForInIter, ":for-in-iter") \ | 85 V(ForInIter, ":for-in-iter") \ |
| 84 V(Library, "library") \ | 86 V(Library, "library") \ |
| 85 V(LoadLibrary, "loadLibrary") \ | 87 V(LoadLibrary, "loadLibrary") \ |
| 86 V(_LibraryPrefix, "_LibraryPrefix") \ | 88 V(_LibraryPrefix, "_LibraryPrefix") \ |
| 87 V(Async, "async") \ | 89 V(Async, "async") \ |
| 88 V(Sync, "sync") \ | 90 V(Sync, "sync") \ |
| 89 V(YieldKw, "yield") \ | 91 V(YieldKw, "yield") \ |
| 90 V(AsyncCompleter, ":async_completer") \ | 92 V(AsyncCompleter, ":async_completer") \ |
| 91 V(AsyncOperation, ":async_op") \ | 93 V(AsyncOperation, ":async_op") \ |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 friend class SnapshotReader; | 583 friend class SnapshotReader; |
| 582 friend class SnapshotWriter; | 584 friend class SnapshotWriter; |
| 583 friend class ApiMessageReader; | 585 friend class ApiMessageReader; |
| 584 | 586 |
| 585 DISALLOW_COPY_AND_ASSIGN(Symbols); | 587 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 586 }; | 588 }; |
| 587 | 589 |
| 588 } // namespace dart | 590 } // namespace dart |
| 589 | 591 |
| 590 #endif // VM_SYMBOLS_H_ | 592 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |