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

Unified Diff: src/typedarray.js

Issue 1183213002: Inline code generation for %_IsTypedArray (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fullcodegen on all platforms; turbofan typer Created 5 years, 6 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/typedarray.js
diff --git a/src/typedarray.js b/src/typedarray.js
index 65659147ee7777cf1e8bc69196d4fc09a4beee89..61329df928261007c51a3e7489d3378de9f826cc 100644
--- a/src/typedarray.js
+++ b/src/typedarray.js
@@ -312,7 +312,7 @@ function TypedArraySet(obj, offset) {
}
function TypedArrayGetToStringTag() {
- if (!%IsTypedArray(this)) return;
+ if (!%_IsTypedArray(this)) return;
var name = %_ClassOf(this);
if (IS_UNDEFINED(name)) return;
return name;

Powered by Google App Engine
This is Rietveld 408576698