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

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

Issue 260713008: Add support for javascript incompatibility warnings. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/parser.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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 V(ArgumentError, "ArgumentError") \ 247 V(ArgumentError, "ArgumentError") \
248 V(FormatException, "FormatException") \ 248 V(FormatException, "FormatException") \
249 V(UnsupportedError, "UnsupportedError") \ 249 V(UnsupportedError, "UnsupportedError") \
250 V(StackOverflowError, "StackOverflowError") \ 250 V(StackOverflowError, "StackOverflowError") \
251 V(OutOfMemoryError, "OutOfMemoryError") \ 251 V(OutOfMemoryError, "OutOfMemoryError") \
252 V(InternalError, "_InternalError") \ 252 V(InternalError, "_InternalError") \
253 V(NullThrownError, "NullThrownError") \ 253 V(NullThrownError, "NullThrownError") \
254 V(IsolateSpawnException, "IsolateSpawnException") \ 254 V(IsolateSpawnException, "IsolateSpawnException") \
255 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 255 V(IsolateUnhandledException, "_IsolateUnhandledException") \
256 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 256 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
257 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \
Florian Schneider 2014/05/12 09:25:46 DBC: If you want to save time, try appending the n
257 V(MirroredCompilationError, "MirroredCompilationError") \ 258 V(MirroredCompilationError, "MirroredCompilationError") \
258 V(_setupFullStackTrace, "_setupFullStackTrace") \ 259 V(_setupFullStackTrace, "_setupFullStackTrace") \
259 V(BooleanExpression, "boolean expression") \ 260 V(BooleanExpression, "boolean expression") \
260 V(Malformed, "malformed") \ 261 V(Malformed, "malformed") \
261 V(Malbounded, "malbounded") \ 262 V(Malbounded, "malbounded") \
262 V(InstanceOf, "InstanceOf") \ 263 V(InstanceOf, "InstanceOf") \
263 V(MegamorphicMiss, "megamorphic_miss") \ 264 V(MegamorphicMiss, "megamorphic_miss") \
264 V(CommaSpace, ", ") \ 265 V(CommaSpace, ", ") \
265 V(ColonSpace, ": ") \ 266 V(ColonSpace, ": ") \
266 V(RParenArrow, ") => ") \ 267 V(RParenArrow, ") => ") \
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 friend class SnapshotReader; 532 friend class SnapshotReader;
532 friend class SnapshotWriter; 533 friend class SnapshotWriter;
533 friend class ApiMessageReader; 534 friend class ApiMessageReader;
534 535
535 DISALLOW_COPY_AND_ASSIGN(Symbols); 536 DISALLOW_COPY_AND_ASSIGN(Symbols);
536 }; 537 };
537 538
538 } // namespace dart 539 } // namespace dart
539 540
540 #endif // VM_SYMBOLS_H_ 541 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/standalone/issue14236_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698