Skip to content

Commit

Permalink
deps: V8: reintroduce missing whitespace in test
Browse files Browse the repository at this point in the history
4c4af64 accidentally dropped the significant whitespace from this test
when it was landed. Add the whitespace back.

Refs: nodejs#17489
PR-URL: nodejs#18360
Reviewed-By: Kyle Farnung <kfarnung@microsoft.com>
  • Loading branch information
ofrobots authored and MayaLekova committed May 8, 2018
1 parent 16bbf05 commit 7e0ffad
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ snippet: "
static c;
static ['d'];
}

class B {
a = 1;
['b'] = this.a;
Expand Down Expand Up @@ -138,7 +138,7 @@ snippet: "
static c;
static ['d'];
}

class B extends class {} {
a = 1;
['b'] = this.a;
Expand All @@ -149,7 +149,7 @@ snippet: "
super();
}
}

class C extends B {
a = 1;
['b'] = this.a;
Expand All @@ -159,7 +159,7 @@ snippet: "
(() => super())();
}
}

new A;
new B;
new C;
Expand Down Expand Up @@ -335,3 +335,4 @@ constant pool: [
]
handlers: [
]

0 comments on commit 7e0ffad

Please sign in to comment.