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

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

Issue 11712002: Remove NoSuchMethodErrorImplementation class and use NoSuchMethodError from core (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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/lib/errors_patch.dart ('k') | runtime/vm/dart_api_impl_test.cc » ('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_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 V(Math_exp, 1) \ 98 V(Math_exp, 1) \
99 V(Math_log, 1) \ 99 V(Math_log, 1) \
100 V(DateNatives_currentTimeMillis, 0) \ 100 V(DateNatives_currentTimeMillis, 0) \
101 V(DateNatives_timeZoneName, 1) \ 101 V(DateNatives_timeZoneName, 1) \
102 V(DateNatives_timeZoneOffsetInSeconds, 1) \ 102 V(DateNatives_timeZoneOffsetInSeconds, 1) \
103 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ 103 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \
104 V(AssertionError_throwNew, 2) \ 104 V(AssertionError_throwNew, 2) \
105 V(TypeError_throwNew, 5) \ 105 V(TypeError_throwNew, 5) \
106 V(FallThroughError_throwNew, 1) \ 106 V(FallThroughError_throwNew, 1) \
107 V(AbstractClassInstantiationError_throwNew, 2) \ 107 V(AbstractClassInstantiationError_throwNew, 2) \
108 V(NoSuchMethodError_throwNew, 2) \
109 V(Stopwatch_now, 0) \ 108 V(Stopwatch_now, 0) \
110 V(Stopwatch_frequency, 0) \ 109 V(Stopwatch_frequency, 0) \
111 V(ByteArray_getLength, 1) \ 110 V(ByteArray_getLength, 1) \
112 V(ByteArray_getInt8, 2) \ 111 V(ByteArray_getInt8, 2) \
113 V(ByteArray_setInt8, 3) \ 112 V(ByteArray_setInt8, 3) \
114 V(ByteArray_getUint8, 2) \ 113 V(ByteArray_getUint8, 2) \
115 V(ByteArray_setUint8, 3) \ 114 V(ByteArray_setUint8, 3) \
116 V(ByteArray_getInt16, 2) \ 115 V(ByteArray_getInt16, 2) \
117 V(ByteArray_setInt16, 3) \ 116 V(ByteArray_setInt16, 3) \
118 V(ByteArray_getUint16, 2) \ 117 V(ByteArray_getUint16, 2) \
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 static void DN_##name(Dart_NativeArguments args); 224 static void DN_##name(Dart_NativeArguments args);
226 225
227 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 226 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
228 227
229 #undef DECLARE_BOOTSTRAP_NATIVE 228 #undef DECLARE_BOOTSTRAP_NATIVE
230 }; 229 };
231 230
232 } // namespace dart 231 } // namespace dart
233 232
234 #endif // VM_BOOTSTRAP_NATIVES_H_ 233 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | runtime/vm/dart_api_impl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698