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

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

Issue 13139002: Remove support for 'dart:scalarlist' in the Dart VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 V(PrivateSetterPrefix, "set:_") \ 230 V(PrivateSetterPrefix, "set:_") \
231 V(_New, "_new") \ 231 V(_New, "_new") \
232 V(DartScheme, "dart:") \ 232 V(DartScheme, "dart:") \
233 V(DartSchemePrivate, "dart:_") \ 233 V(DartSchemePrivate, "dart:_") \
234 V(DartCore, "dart:core") \ 234 V(DartCore, "dart:core") \
235 V(DartCollection, "dart:collection") \ 235 V(DartCollection, "dart:collection") \
236 V(DartCollectionDev, "dart:_collection-dev") \ 236 V(DartCollectionDev, "dart:_collection-dev") \
237 V(DartMath, "dart:math") \ 237 V(DartMath, "dart:math") \
238 V(DartIsolate, "dart:isolate") \ 238 V(DartIsolate, "dart:isolate") \
239 V(DartMirrors, "dart:mirrors") \ 239 V(DartMirrors, "dart:mirrors") \
240 V(DartScalarlist, "dart:scalarlist") \
241 V(DartTypedData, "dart:typeddata") \ 240 V(DartTypedData, "dart:typeddata") \
242 V(DartNativeWrappers, "dart:nativewrappers") \ 241 V(DartNativeWrappers, "dart:nativewrappers") \
243 V(DartAsync, "dart:async") \ 242 V(DartAsync, "dart:async") \
244 V(DartUri, "dart:uri") \ 243 V(DartUri, "dart:uri") \
245 V(DartUtf, "dart:utf") \ 244 V(DartUtf, "dart:utf") \
246 V(DartCrypto, "dart:crypto") \ 245 V(DartCrypto, "dart:crypto") \
247 V(DartJson, "dart:json") \ 246 V(DartJson, "dart:json") \
248 247
249 248
250 // Contains a list of frequently used strings in a canonicalized form. This 249 // Contains a list of frequently used strings in a canonicalized form. This
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 friend class SnapshotReader; 436 friend class SnapshotReader;
438 friend class SnapshotWriter; 437 friend class SnapshotWriter;
439 friend class ApiMessageReader; 438 friend class ApiMessageReader;
440 439
441 DISALLOW_COPY_AND_ASSIGN(Symbols); 440 DISALLOW_COPY_AND_ASSIGN(Symbols);
442 }; 441 };
443 442
444 } // namespace dart 443 } // namespace dart
445 444
446 #endif // VM_SYMBOLS_H_ 445 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698