mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
allowing quoted strings within object assignment, a in JS and JSON
This commit is contained in:
2
test/fixtures/execution/test_everything.cs
vendored
2
test/fixtures/execution/test_everything.cs
vendored
@@ -6,7 +6,7 @@ func: =>
|
||||
a--.
|
||||
|
||||
c: {
|
||||
text: b
|
||||
"text": b
|
||||
}
|
||||
|
||||
c: 'error' unless 42 > 41
|
||||
|
||||
2
test/fixtures/execution/test_everything.js
vendored
2
test/fixtures/execution/test_everything.js
vendored
@@ -7,7 +7,7 @@
|
||||
a--;
|
||||
}
|
||||
var c = {
|
||||
text: b
|
||||
"text": b
|
||||
};
|
||||
if (!(42 > 41)) {
|
||||
c = 'error';
|
||||
|
||||
Reference in New Issue
Block a user