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

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

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 years, 1 month 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
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 V(Double, "_Double") \ 107 V(Double, "_Double") \
108 V(Bool, "bool") \ 108 V(Bool, "bool") \
109 V(ObjectArray, "_ObjectArray") \ 109 V(ObjectArray, "_ObjectArray") \
110 V(GrowableObjectArray, "_GrowableObjectArray") \ 110 V(GrowableObjectArray, "_GrowableObjectArray") \
111 V(ImmutableArray, "_ImmutableArray") \ 111 V(ImmutableArray, "_ImmutableArray") \
112 V(OneByteString, "_OneByteString") \ 112 V(OneByteString, "_OneByteString") \
113 V(TwoByteString, "_TwoByteString") \ 113 V(TwoByteString, "_TwoByteString") \
114 V(ExternalOneByteString, "_ExternalOneByteString") \ 114 V(ExternalOneByteString, "_ExternalOneByteString") \
115 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 115 V(ExternalTwoByteString, "_ExternalTwoByteString") \
116 V(Stacktrace, "Stacktrace") \ 116 V(Stacktrace, "Stacktrace") \
117 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ 117 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
118 V(Object, "Object") \ 118 V(Object, "Object") \
119 V(_Int8Array, "_Int8Array") \ 119 V(_Int8Array, "_Int8Array") \
120 V(_Uint8Array, "_Uint8Array") \ 120 V(_Uint8Array, "_Uint8Array") \
121 V(_Int16Array, "_Int16Array") \ 121 V(_Int16Array, "_Int16Array") \
122 V(_Uint16Array, "_Uint16Array") \ 122 V(_Uint16Array, "_Uint16Array") \
123 V(_Int32Array, "_Int32Array") \ 123 V(_Int32Array, "_Int32Array") \
124 V(_Uint32Array, "_Uint32Array") \ 124 V(_Uint32Array, "_Uint32Array") \
125 V(_Int64Array, "_Int64Array") \ 125 V(_Int64Array, "_Int64Array") \
126 V(_Uint64Array, "_Uint64Array") \ 126 V(_Uint64Array, "_Uint64Array") \
127 V(_Float32Array, "_Float32Array") \ 127 V(_Float32Array, "_Float32Array") \
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 friend class SnapshotReader; 226 friend class SnapshotReader;
227 friend class SnapshotWriter; 227 friend class SnapshotWriter;
228 friend class ApiMessageReader; 228 friend class ApiMessageReader;
229 229
230 DISALLOW_COPY_AND_ASSIGN(Symbols); 230 DISALLOW_COPY_AND_ASSIGN(Symbols);
231 }; 231 };
232 232
233 } // namespace dart 233 } // namespace dart
234 234
235 #endif // VM_SYMBOLS_H_ 235 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698