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

Unified Diff: src/objects-inl.h

Issue 2814683002: [builtins] Implement %TypedArray%.prototype.map in the CSA (Closed)
Patch Set: added spec comments Created 3 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 side-by-side diff with in-line comments
Download patch
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 04e0511a57846fcda7a9734c8c49c4cf06fa1f1d..0a38433c8f6076bd857b69eb369fe2e353e5ccb4 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -6920,8 +6920,7 @@ void JSTypedArray::set_length(Object* value, WriteBarrierMode mode) {
// static
MaybeHandle<JSTypedArray> JSTypedArray::Validate(Isolate* isolate,
- Handle<Object> receiver,
- const char* method_name) {
+ Handle<Object> receiver) {
if (V8_UNLIKELY(!receiver->IsJSTypedArray())) {
const MessageTemplate::Template message = MessageTemplate::kNotTypedArray;
THROW_NEW_ERROR(isolate, NewTypeError(message), JSTypedArray);
« src/builtins/builtins-array-gen.cc ('K') | « src/objects.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698