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