Node.js REPL에서) (을 사용하여 함수를 호출하는 이유는 무엇입니까?


191

node.js로 테스트 한 JavaScript에서 함수를 호출 할 수있는 이유는 무엇입니까?

~$ node
> function hi() { console.log("Hello, World!"); };
undefined
> hi
[Function: hi]
> hi()
Hello, World!
undefined
> hi)( // WTF?
Hello, World!
undefined
>

마지막 전화가 왜 hi)(작동합니까? node.js의 버그, V8 엔진의 버그, 공식적으로 정의되지 않은 동작 또는 실제로 모든 통역사에 유효한 JavaScript입니까?


1
Ubuntu 13.04의 nodejs v0.6.19에서 재현 가능
mvp

1
jsfiddle.net에 대한 빠른 테스트는 그것이 유효하지 않은 JavaScript임을 보여줍니다.
Christophe

6
Node REPL 버그 인 것 같습니다. 두 줄을 .js넣으면 구문 오류가 발생합니다
leesei

8
Btw, 예상되는 신용, 이것은 @miniml에 의해 irc (FreeNode #nodejs)에서 나타났습니다
hyde

3
펄은 거의 같은 이유로 비슷한 것을 가지고있다 : perl -ne '$x += $_; }{ print $x'.
Adrian Pronk

답변:


84

Node REPL 버그 인 것 같습니다.이 두 줄을 .js넣으면 구문 오류가 발생합니다.

function hi() { console.log("Hello, World!"); }
hi)(

오류:

SyntaxError: Unexpected token )
    at Module._compile (module.js:439:25)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:901:3

문제가 # 6634 제출되었습니다 .

v0.10.20에서 재현되었습니다.


v0.11.7에서이 문제가 해결되었습니다.

$ nvm run 0.11.7
Running node v0.11.7
> function hi() { console.log("Hello, World!"); }
undefined
>  hi)(
SyntaxError: Unexpected token )
    at Object.exports.createScript (vm.js:44:10)
    at REPLServer.defaultEval (repl.js:117:23)
    at REPLServer.b [as eval] (domain.js:251:18)
    at Interface.<anonymous> (repl.js:277:12)
    at Interface.EventEmitter.emit (events.js:103:17)
    at Interface._onLine (readline.js:194:10)
    at Interface._line (readline.js:523:8)
    at Interface._ttyWrite (readline.js:798:14)
    at ReadStream.onkeypress (readline.js:98:10)
    at ReadStream.EventEmitter.emit (events.js:106:17)
> 

27
그들은 실제로 가서 그것을 고쳤습니까? 아아, 동정 아, 나는 그것이 문화를 시작하고 모든 언어 의 특징 이되는 것을 정말로보고 싶다 . 몇 번이나) (서둘러 () 대신 () 대신 입력) :
geomagas

18
@geomagas function a)arg1, arg2( } ]arg2 + arg1[ return; {유효한 구문이어야 한다고 생각 하십니까?
azz

40
아니 정말. 실제로, 그것은 농담이었습니다.
geomagas

7
옛날 옛적 철자 오류 및 기타 사소한 오류를 자동으로 수정하는 DWIM 옵션으로 Lisp 구현이있었습니다. en.wikipedia.org/wiki/DWIM
Barmar

2
- @geomagas, 음, 일부는 이미 나서서 그것에 대해 생각 npm하고있다 install isntall . 당신이 눈치 채지 못한 내기 :)
Eliran Malka

201

REPL이 입력을 평가하는 방식 때문입니다. 결과는 다음과 같습니다.

(hi)()

추가 괄호가 추가 되어 식이 되도록합니다 .

  // First we attempt to eval as expression with parens.
  // This catches '{a : 1}' properly.
  self.eval('(' + evalCmd + ')',
      // ...

목적은 치료하는 것입니다 {...}으로 Object리터럴 / initialisers 보다는으로 블록 .

var stmt = '{ "foo": "bar" }';
var expr = '(' + stmt + ')';

console.log(eval(expr)); // Object {foo: "bar"}
console.log(eval(stmt)); // SyntaxError: Unexpected token :

그리고 leesei가 언급했듯이 이것은 0.11.x로 변경되어 모든 입력이 아닌 랩핑됩니다{ ... } .

  if (/^\s*\{/.test(evalCmd) && /\}\s*$/.test(evalCmd)) {
    // It's confusing for `{ a : 1 }` to be interpreted as a block
    // statement rather than an object literal.  So, we first try
    // to wrap it in parentheses, so that it will be interpreted as
    // an expression.
    evalCmd = '(' + evalCmd + ')\n';
  } else {
    // otherwise we just append a \n so that it will be either
    // terminated, or continued onto the next expression if it's an
    // unexpected end of input.
    evalCmd = evalCmd + '\n';
  }

19
그게 hi)(arg효과가 있을까요? 진정한 WTF- 라이딩 된 코드를 작성하기 위해 남용 될 수있다 ;-)
Doctor Jones

나는 왜 그것이 실행되는지 이해하지 못합니다. 필적 할 수없는 오픈 파런으로 인해 구문 오류가 발생하지 않습니까?
피터 올슨

2
hi)(arg가된다 (hi)(arg)- 아무것도 타의 추종을 불허 없습니다
SheetJS

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.