forked from babel/babylon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes babel#540 - Fixes location for publicFields (should not contain semi-colon) - Added tests
- Loading branch information
Diego
committed
Jul 1, 2017
1 parent
5e1e949
commit c51f834
Showing
33 changed files
with
1,527 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
test/fixtures/experimental/class-private-properties/comma-separated/actual.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class C { | ||
#p1,#p2; | ||
#p3 = 1, #p4 = 1; | ||
#p5 = 1, #p6, #p7; | ||
} |
Oops, something went wrong.