moved to lambda tests
This commit is contained in:
parent
8ef0950a07
commit
ba8a8bee91
17 changed files with 80 additions and 0 deletions
14
test/data/lambda/partial_whitespace.js
Normal file
14
test/data/lambda/partial_whitespace.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
({
|
||||
greeting: function () {
|
||||
return "Welcome";
|
||||
},
|
||||
farewell: function () {
|
||||
return "Fair enough, right?";
|
||||
},
|
||||
name: "Chris",
|
||||
value: 10000,
|
||||
taxed_value: function () {
|
||||
return this.value - (this.value * 0.4);
|
||||
},
|
||||
in_ca: true
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue