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

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

Issue 1062523002: Use evaluate:source as the uri of eval scripts instead of the empty string, so e.g., package:stack… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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.cc ('k') | no next file » | 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 V(DartNativeWrappersLibName, "dart.nativewrappers") \ 327 V(DartNativeWrappersLibName, "dart.nativewrappers") \
328 V(DartCore, "dart:core") \ 328 V(DartCore, "dart:core") \
329 V(DartCollection, "dart:collection") \ 329 V(DartCollection, "dart:collection") \
330 V(DartInternal, "dart:_internal") \ 330 V(DartInternal, "dart:_internal") \
331 V(DartIsolate, "dart:isolate") \ 331 V(DartIsolate, "dart:isolate") \
332 V(DartMirrors, "dart:mirrors") \ 332 V(DartMirrors, "dart:mirrors") \
333 V(DartTypedData, "dart:typed_data") \ 333 V(DartTypedData, "dart:typed_data") \
334 V(DartVMService, "dart:vmservice") \ 334 V(DartVMService, "dart:vmservice") \
335 V(DartProfiler, "dart:profiler") \ 335 V(DartProfiler, "dart:profiler") \
336 V(DartIOLibName, "dart.io") \ 336 V(DartIOLibName, "dart.io") \
337 V(GeneratedSourceUri, "generated:source") \
siva 2015/04/03 18:26:57 Why not call it evaluate:source or something like
rmacnak 2015/04/03 18:37:17 sgtm
337 V(_Random, "_Random") \ 338 V(_Random, "_Random") \
338 V(_state, "_state") \ 339 V(_state, "_state") \
339 V(_A, "_A") \ 340 V(_A, "_A") \
340 V(_stackTrace, "_stackTrace") \ 341 V(_stackTrace, "_stackTrace") \
341 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ 342 V(_SpecialTypeMirror, "_SpecialTypeMirror") \
342 V(_LocalClassMirror, "_LocalClassMirror") \ 343 V(_LocalClassMirror, "_LocalClassMirror") \
343 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ 344 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \
344 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ 345 V(_LocalLibraryMirror, "_LocalLibraryMirror") \
345 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ 346 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \
346 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ 347 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 friend class SnapshotReader; 600 friend class SnapshotReader;
600 friend class SnapshotWriter; 601 friend class SnapshotWriter;
601 friend class ApiMessageReader; 602 friend class ApiMessageReader;
602 603
603 DISALLOW_COPY_AND_ASSIGN(Symbols); 604 DISALLOW_COPY_AND_ASSIGN(Symbols);
604 }; 605 };
605 606
606 } // namespace dart 607 } // namespace dart
607 608
608 #endif // VM_SYMBOLS_H_ 609 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698