Closed
Description
- Version: v6.9.5
- Platform: Darwin Honor.local 16.4.0 Darwin Kernel Version 16.4.0: Thu Dec 22 22:53:21 PST 2016; root:xnu-3789.41.3~3/RELEASE_X86_64 x86_64
- Subsystem: parser
This source: a=b=1;((a + 1), {c} = b)
- Works in Chrome 56.0.2924.87
- Works in Safari 10.0.3 (12602.4.8)
- Fails to parse in Node
Quick command-line test:
echo "a=b=1;((a + 1), {c} = b)" | node
These slight variations DO work in node:
a=b=1;((a), {c} = b)
a=b=1;((a + 1), ({c} = b))