summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/toString/method-class-statement.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/toString/method-class-statement.js')
-rw-r--r--test/built-ins/Function/prototype/toString/method-class-statement.js12
1 files changed, 3 insertions, 9 deletions
diff --git a/test/built-ins/Function/prototype/toString/method-class-statement.js b/test/built-ins/Function/prototype/toString/method-class-statement.js
index 63f7e3871..3ee83d514 100644
--- a/test/built-ins/Function/prototype/toString/method-class-statement.js
+++ b/test/built-ins/Function/prototype/toString/method-class-statement.js
@@ -7,15 +7,9 @@ description: Function.prototype.toString on a method (class)
---*/
let x = "h";
-class F { /* before */
- f /* a */ ( /* b */ ) /* c */ { /* d */ } /* after */
-}
-class G { /* before */
- [ /* a */ "g" /* b */ ] /* c */ ( /* d */ ) /* e */ { /* f */ } /* after */
-}
-class H { /* before */
- [ /* a */ x /* b */ ] /* c */ ( /* d */ ) /* e */ { /* f */ } /* after */
-}
+class F { /* before */f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */ }
+class G { /* before */[ /* a */ "g" /* b */ ] /* c */ ( /* d */ ) /* e */ { /* f */ }/* after */ }
+class H { /* before */[ /* a */ x /* b */ ] /* c */ ( /* d */ ) /* e */ { /* f */ }/* after */ }
let f = F.prototype.f;
let g = G.prototype.g;