start concise methods

This commit is contained in:
Fábio Santos
2015-10-11 18:22:07 +01:00
committed by Richard van Velzen
parent 2babe737e0
commit 0d8dea9538
4 changed files with 33 additions and 0 deletions

View File

@@ -132,6 +132,22 @@ destructuring_arguments: {
}
}
concise_methods: {
input: {
x = {
foo(a, b) {
return x;
}
}
y = {
foo([{a}]) {
return a;
}
}
}
expect_exact: "x={foo(a,b){return x}};y={foo([{a}]){return a}};"
}
number_literals: {
input: {
0b1001;