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

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

Issue 19000006: First version of Codecs and Converters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. Created 7 years, 5 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/object_store.h ('k') | runtime/vm/vm.gypi » ('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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 V(_as, "_as") \ 243 V(_as, "_as") \
244 V(GetterPrefix, "get:") \ 244 V(GetterPrefix, "get:") \
245 V(SetterPrefix, "set:") \ 245 V(SetterPrefix, "set:") \
246 V(PrivateGetterPrefix, "get:_") \ 246 V(PrivateGetterPrefix, "get:_") \
247 V(PrivateSetterPrefix, "set:_") \ 247 V(PrivateSetterPrefix, "set:_") \
248 V(_New, "_new") \ 248 V(_New, "_new") \
249 V(DartScheme, "dart:") \ 249 V(DartScheme, "dart:") \
250 V(DartSchemePrivate, "dart:_") \ 250 V(DartSchemePrivate, "dart:_") \
251 V(DartNativeWrappers, "dart:nativewrappers") \ 251 V(DartNativeWrappers, "dart:nativewrappers") \
252 V(DartAsync, "dart:async") \ 252 V(DartAsync, "dart:async") \
253 V(DartCodec, "dart:codec") \
253 V(DartCore, "dart:core") \ 254 V(DartCore, "dart:core") \
254 V(DartCollection, "dart:collection") \ 255 V(DartCollection, "dart:collection") \
255 V(DartCollectionDev, "dart:_collection-dev") \ 256 V(DartCollectionDev, "dart:_collection-dev") \
257 V(DartConvert, "dart:convert") \
256 V(DartIsolate, "dart:isolate") \ 258 V(DartIsolate, "dart:isolate") \
257 V(DartJson, "dart:json") \ 259 V(DartJson, "dart:json") \
258 V(DartMath, "dart:math") \ 260 V(DartMath, "dart:math") \
259 V(DartMirrors, "dart:mirrors") \ 261 V(DartMirrors, "dart:mirrors") \
260 V(DartTypedData, "dart:typed_data") \ 262 V(DartTypedData, "dart:typed_data") \
261 V(DartUtf, "dart:utf") \ 263 V(DartUtf, "dart:utf") \
262 V(_Random, "_Random") \ 264 V(_Random, "_Random") \
263 V(_state, "_state") \ 265 V(_state, "_state") \
264 V(_A, "_A") \ 266 V(_A, "_A") \
265 267
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 friend class SnapshotReader; 462 friend class SnapshotReader;
461 friend class SnapshotWriter; 463 friend class SnapshotWriter;
462 friend class ApiMessageReader; 464 friend class ApiMessageReader;
463 465
464 DISALLOW_COPY_AND_ASSIGN(Symbols); 466 DISALLOW_COPY_AND_ASSIGN(Symbols);
465 }; 467 };
466 468
467 } // namespace dart 469 } // namespace dart
468 470
469 #endif // VM_SYMBOLS_H_ 471 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object_store.h ('k') | runtime/vm/vm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698