| Index: src/runtime.js
|
| diff --git a/src/runtime.js b/src/runtime.js
|
| index 49f58bbceaabb4f93895635435b67e572938cbe3..ab79a4bbde0853ee3f39b68c2cf8518fb8f8f975 100644
|
| --- a/src/runtime.js
|
| +++ b/src/runtime.js
|
| @@ -210,7 +210,7 @@ COMPARE_STRONG = function COMPARE_STRONG(x, ncr) {
|
| if (IS_STRING(this) && IS_STRING(x)) return %_StringCompare(this, x);
|
| if (IS_NUMBER(this) && IS_NUMBER(x)) return %NumberCompare(this, x, ncr);
|
|
|
| - throw %MakeTypeError('strong_implicit_cast');
|
| + throw %MakeTypeError(kStrongImplicitCast);
|
| }
|
|
|
|
|
|
|