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

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

Issue 1214723009: Make List constructor give better error messages for non-int arguments (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Use unused variable. Created 5 years, 4 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
« no previous file with comments | « runtime/vm/object_test.cc ('k') | sdk/lib/_internal/js_runtime/lib/js_array.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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 284 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
285 V(toString, "toString") \ 285 V(toString, "toString") \
286 V(_lookupHandler, "_lookupHandler") \ 286 V(_lookupHandler, "_lookupHandler") \
287 V(_handleMessage, "_handleMessage") \ 287 V(_handleMessage, "_handleMessage") \
288 V(DotCreate, "._create") \ 288 V(DotCreate, "._create") \
289 V(DotWithType, "._withType") \ 289 V(DotWithType, "._withType") \
290 V(_get, "_get") \ 290 V(_get, "_get") \
291 V(RangeError, "RangeError") \ 291 V(RangeError, "RangeError") \
292 V(DotRange, ".range") \ 292 V(DotRange, ".range") \
293 V(ArgumentError, "ArgumentError") \ 293 V(ArgumentError, "ArgumentError") \
294 V(DotValue, ".value") \
294 V(FormatException, "FormatException") \ 295 V(FormatException, "FormatException") \
295 V(UnsupportedError, "UnsupportedError") \ 296 V(UnsupportedError, "UnsupportedError") \
296 V(StackOverflowError, "StackOverflowError") \ 297 V(StackOverflowError, "StackOverflowError") \
297 V(OutOfMemoryError, "OutOfMemoryError") \ 298 V(OutOfMemoryError, "OutOfMemoryError") \
298 V(NullThrownError, "NullThrownError") \ 299 V(NullThrownError, "NullThrownError") \
299 V(IsolateSpawnException, "IsolateSpawnException") \ 300 V(IsolateSpawnException, "IsolateSpawnException") \
300 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 301 V(IsolateUnhandledException, "_IsolateUnhandledException") \
301 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 302 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
302 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ 303 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \
303 V(BooleanExpression, "boolean expression") \ 304 V(BooleanExpression, "boolean expression") \
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 friend class SnapshotReader; 633 friend class SnapshotReader;
633 friend class SnapshotWriter; 634 friend class SnapshotWriter;
634 friend class ApiMessageReader; 635 friend class ApiMessageReader;
635 636
636 DISALLOW_COPY_AND_ASSIGN(Symbols); 637 DISALLOW_COPY_AND_ASSIGN(Symbols);
637 }; 638 };
638 639
639 } // namespace dart 640 } // namespace dart
640 641
641 #endif // VM_SYMBOLS_H_ 642 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object_test.cc ('k') | sdk/lib/_internal/js_runtime/lib/js_array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698