| Index: src/runtime.js
|
| diff --git a/src/runtime.js b/src/runtime.js
|
| index 108b928ea84fb09018505ff8987b026999b712fb..d0cdb3ef6083757811a13f0dd05c15db22ab1860 100644
|
| --- a/src/runtime.js
|
| +++ b/src/runtime.js
|
| @@ -458,7 +458,8 @@ function APPLY_PREPARE(args) {
|
| }
|
|
|
| if (!IS_SPEC_FUNCTION(this)) {
|
| - throw %MakeTypeError('apply_non_function', [ %ToString(this), typeof this ]);
|
| + throw %MakeTypeError('apply_non_function',
|
| + [ %ToString(this), typeof this ]);
|
| }
|
|
|
| // Make sure the arguments list has the right type.
|
|
|