summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/toString/method-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/toString/method-object.js')
-rw-r--r--test/built-ins/Function/prototype/toString/method-object.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/built-ins/Function/prototype/toString/method-object.js b/test/built-ins/Function/prototype/toString/method-object.js
index 6930964ed..0e1567873 100644
--- a/test/built-ins/Function/prototype/toString/method-object.js
+++ b/test/built-ins/Function/prototype/toString/method-object.js
@@ -6,6 +6,8 @@ esid: sec-runtime-semantics-definemethod
description: Function.prototype.toString on a method (object)
---*/
-let f = { /* before */f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */ }.f;
+let f = { /* before */
+ f /* a */ ( /* b */ ) /* c */ { /* d */ } /* after */
+}.f;
assert.sameValue(f.toString(), "f /* a */ ( /* b */ ) /* c */ { /* d */ }");