Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spread operator requries --es-staging in v5.3.0 #4366

Closed
elmigranto opened this issue Dec 20, 2015 · 1 comment
Closed

Spread operator requries --es-staging in v5.3.0 #4366

elmigranto opened this issue Dec 20, 2015 · 1 comment
Labels
invalid Issues and PRs that are invalid.

Comments

@elmigranto
Copy link

Changelog and official ES6 Support page states that Spread operator is supported without any runtime flags by >= 5.x.x. However, I get SyntaxError while using it without --es-staging flag. For example:

$ node -e 'var f = function (...parts) {};'
[eval]:1
var f = function (...parts) {};
                  ^^^

SyntaxError: Unexpected token ...
    at Object.exports.runInThisContext (vm.js:53:16)
    at Object.<anonymous> ([eval]-wrapper:6:22)
    at Module._compile (module.js:398:26)
    at node.js:592:27
    at nextTickCallbackWith0Args (node.js:433:9)
    at process._tickCallback (node.js:362:13)

I'm on OS X with node 5.3.0 installed via homebrew and its default config (AFAIK, it uses https://nodejs.org/dist/v5.3.0/node-v5.3.0.tar.gz), here's my process.versions:

{ http_parser: '2.6.0',
  node: '5.3.0',
  v8: '4.6.85.31',
  uv: '1.8.0',
  zlib: '1.2.8',
  ares: '1.10.1-DEV',
  icu: '56.1',
  modules: '47',
  openssl: '1.0.2e' }
@ChALkeR ChALkeR added doc Issues and PRs related to the documentations. v8 engine Issues and PRs related to the V8 dependency. labels Dec 20, 2015
@ChALkeR
Copy link
Member

ChALkeR commented Dec 20, 2015

@elmigranto That is not the Spread operator, those are called Rest parameters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid Issues and PRs that are invalid.
Projects
None yet
Development

No branches or pull requests

2 participants