Chromium Code Reviews| Index: src/typedarray.js |
| diff --git a/src/typedarray.js b/src/typedarray.js |
| index 812da32a96b14fc61a4907d767a22205b86e3702..29d3cf351c44622a3690da2c6507d2f823085f41 100644 |
| --- a/src/typedarray.js |
| +++ b/src/typedarray.js |
| @@ -337,7 +337,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; |