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

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

Issue 262823012: Various vmservice/observatory fixes: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 7 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/service.cc ('k') | tests/standalone/issue14236_test.dart » ('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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 V(_as, "_as") \ 272 V(_as, "_as") \
273 V(GetterPrefix, "get:") \ 273 V(GetterPrefix, "get:") \
274 V(SetterPrefix, "set:") \ 274 V(SetterPrefix, "set:") \
275 V(InitPrefix, "init:") \ 275 V(InitPrefix, "init:") \
276 V(PrivateGetterPrefix, "get:_") \ 276 V(PrivateGetterPrefix, "get:_") \
277 V(PrivateSetterPrefix, "set:_") \ 277 V(PrivateSetterPrefix, "set:_") \
278 V(_New, "_new") \ 278 V(_New, "_new") \
279 V(DartScheme, "dart:") \ 279 V(DartScheme, "dart:") \
280 V(DartSchemePrivate, "dart:_") \ 280 V(DartSchemePrivate, "dart:_") \
281 V(DartNativeWrappers, "dart:nativewrappers") \ 281 V(DartNativeWrappers, "dart:nativewrappers") \
282 V(DartNativeWrappersLibName, "dart.nativewrappers") \
282 V(DartAsync, "dart:async") \ 283 V(DartAsync, "dart:async") \
283 V(DartCore, "dart:core") \ 284 V(DartCore, "dart:core") \
284 V(DartCollection, "dart:collection") \ 285 V(DartCollection, "dart:collection") \
285 V(DartConvert, "dart:convert") \ 286 V(DartConvert, "dart:convert") \
286 V(DartInternal, "dart:_internal") \ 287 V(DartInternal, "dart:_internal") \
287 V(DartIsolate, "dart:isolate") \ 288 V(DartIsolate, "dart:isolate") \
288 V(DartMath, "dart:math") \ 289 V(DartMath, "dart:math") \
289 V(DartMirrors, "dart:mirrors") \ 290 V(DartMirrors, "dart:mirrors") \
290 V(DartTypedData, "dart:typed_data") \ 291 V(DartTypedData, "dart:typed_data") \
291 V(DartVMService, "dart:vmservice") \ 292 V(DartVMService, "dart:vmservice") \
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 friend class SnapshotReader; 530 friend class SnapshotReader;
530 friend class SnapshotWriter; 531 friend class SnapshotWriter;
531 friend class ApiMessageReader; 532 friend class ApiMessageReader;
532 533
533 DISALLOW_COPY_AND_ASSIGN(Symbols); 534 DISALLOW_COPY_AND_ASSIGN(Symbols);
534 }; 535 };
535 536
536 } // namespace dart 537 } // namespace dart
537 538
538 #endif // VM_SYMBOLS_H_ 539 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/service.cc ('k') | tests/standalone/issue14236_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698