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