Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: runtime/vm/symbols.h

Issue 11035057: Hide internal details of VM string implementation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 27 matching lines...) Expand all
38 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ 38 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \
39 V(ThrowNew, "_throwNew") \ 39 V(ThrowNew, "_throwNew") \
40 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ 40 V(ListLiteralFactoryClass, "_ListLiteralFactory") \
41 V(ListLiteralFactory, "List.fromLiteral") \ 41 V(ListLiteralFactory, "List.fromLiteral") \
42 V(ListImplementation, "ListImplementation") \ 42 V(ListImplementation, "ListImplementation") \
43 V(ListFactory, "List.") \ 43 V(ListFactory, "List.") \
44 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ 44 V(MapLiteralFactoryClass, "_MapLiteralFactory") \
45 V(MapLiteralFactory, "Map.fromLiteral") \ 45 V(MapLiteralFactory, "Map.fromLiteral") \
46 V(ImmutableMap, "ImmutableMap") \ 46 V(ImmutableMap, "ImmutableMap") \
47 V(ImmutableMapConstructor, "ImmutableMap._create") \ 47 V(ImmutableMapConstructor, "ImmutableMap._create") \
48 V(StringBase, "StringBase") \ 48 V(StringBase, "_StringBase") \
49 V(Interpolate, "_interpolate") \ 49 V(Interpolate, "_interpolate") \
50 V(GetIterator, "iterator") \ 50 V(GetIterator, "iterator") \
51 V(NoSuchMethod, "noSuchMethod") \ 51 V(NoSuchMethod, "noSuchMethod") \
52 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ 52 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \
53 V(SavedEntryContextVar, ":saved_entry_context_var") \ 53 V(SavedEntryContextVar, ":saved_entry_context_var") \
54 V(SavedContextVar, ":saved_context_var") \ 54 V(SavedContextVar, ":saved_context_var") \
55 V(ExceptionVar, ":exception_var") \ 55 V(ExceptionVar, ":exception_var") \
56 V(StacktraceVar, ":stacktrace_var") \ 56 V(StacktraceVar, ":stacktrace_var") \
57 V(ListLiteralElement, "list literal element") \ 57 V(ListLiteralElement, "list literal element") \
58 V(ForInIter, ":for-in-iter") \ 58 V(ForInIter, ":for-in-iter") \
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 V(IntegerImplementation, "_IntegerImplementation") \ 97 V(IntegerImplementation, "_IntegerImplementation") \
98 V(Number, "num") \ 98 V(Number, "num") \
99 V(Smi, "_Smi") \ 99 V(Smi, "_Smi") \
100 V(Mint, "_Mint") \ 100 V(Mint, "_Mint") \
101 V(Bigint, "_Bigint") \ 101 V(Bigint, "_Bigint") \
102 V(Double, "_Double") \ 102 V(Double, "_Double") \
103 V(Bool, "bool") \ 103 V(Bool, "bool") \
104 V(ObjectArray, "_ObjectArray") \ 104 V(ObjectArray, "_ObjectArray") \
105 V(GrowableObjectArray, "_GrowableObjectArray") \ 105 V(GrowableObjectArray, "_GrowableObjectArray") \
106 V(ImmutableArray, "_ImmutableArray") \ 106 V(ImmutableArray, "_ImmutableArray") \
107 V(OneByteString, "OneByteString") \ 107 V(OneByteString, "_OneByteString") \
108 V(TwoByteString, "TwoByteString") \ 108 V(TwoByteString, "_TwoByteString") \
109 V(FourByteString, "FourByteString") \ 109 V(FourByteString, "_FourByteString") \
110 V(ExternalOneByteString, "ExternalOneByteString") \ 110 V(ExternalOneByteString, "_ExternalOneByteString") \
111 V(ExternalTwoByteString, "ExternalTwoByteString") \ 111 V(ExternalTwoByteString, "_ExternalTwoByteString") \
112 V(ExternalFourByteString, "ExternalFourByteString") \ 112 V(ExternalFourByteString, "_ExternalFourByteString") \
113 V(Stacktrace, "Stacktrace") \ 113 V(Stacktrace, "Stacktrace") \
114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ 114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \
115 V(Object, "Object") \ 115 V(Object, "Object") \
116 V(_Int8Array, "_Int8Array") \ 116 V(_Int8Array, "_Int8Array") \
117 V(_Uint8Array, "_Uint8Array") \ 117 V(_Uint8Array, "_Uint8Array") \
118 V(_Int16Array, "_Int16Array") \ 118 V(_Int16Array, "_Int16Array") \
119 V(_Uint16Array, "_Uint16Array") \ 119 V(_Uint16Array, "_Uint16Array") \
120 V(_Int32Array, "_Int32Array") \ 120 V(_Int32Array, "_Int32Array") \
121 V(_Uint32Array, "_Uint32Array") \ 121 V(_Uint32Array, "_Uint32Array") \
122 V(_Int64Array, "_Int64Array") \ 122 V(_Int64Array, "_Int64Array") \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 friend class SnapshotReader; 221 friend class SnapshotReader;
222 friend class SnapshotWriter; 222 friend class SnapshotWriter;
223 friend class ApiMessageReader; 223 friend class ApiMessageReader;
224 224
225 DISALLOW_COPY_AND_ASSIGN(Symbols); 225 DISALLOW_COPY_AND_ASSIGN(Symbols);
226 }; 226 };
227 227
228 } // namespace dart 228 } // namespace dart
229 229
230 #endif // VM_SYMBOLS_H_ 230 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698