add support for experimental private abstract references syntax - closes #291
This commit is contained in:
7
test/fixtures/generation/types/PrivateDeclaration/actual.js
vendored
Normal file
7
test/fixtures/generation/types/PrivateDeclaration/actual.js
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
private A;
|
||||
private B, C;
|
||||
|
||||
class Test {
|
||||
private A;
|
||||
private B, C;
|
||||
}
|
||||
7
test/fixtures/generation/types/PrivateDeclaration/expected.js
vendored
Normal file
7
test/fixtures/generation/types/PrivateDeclaration/expected.js
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
private A;
|
||||
private B, C;
|
||||
|
||||
class Test {
|
||||
private A;
|
||||
private B, C;
|
||||
}
|
||||
Reference in New Issue
Block a user