rename generation test names to be more descriptive
This commit is contained in:
10
test/fixtures/generation/harmony-edgecase/default-parameter/expected.js
vendored
Normal file
10
test/fixtures/generation/harmony-edgecase/default-parameter/expected.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
function a(p = 20) {
|
||||
}
|
||||
function b(p, q = 30) {
|
||||
}
|
||||
function c(p, q = 30, ...r) {
|
||||
}
|
||||
(p = 20) => {
|
||||
};
|
||||
(p = 20, ...q) => {
|
||||
};
|
||||
Reference in New Issue
Block a user