web-dev-qa-db-ja.com

Node.js REPL with)(で関数を呼び出すのはなぜ機能しますか?

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ですか?

193
hyde

Node REPLバグ、これらの2行を.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)
> 
84
leesei

これは、REPLが入力を評価する方法が原因です。最終的には次のようになります。

(hi)()

追加の括弧が追加されます Expression

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

{...} as Object literals/- initialisers ではなく block として。

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

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

そして、リーセイが述べたように、これは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';
  }
201

この問題のために4か月前に発生したバグがありました https://github.com/joyent/node/issues/5698

問題は、REPLが文を括弧で囲むためです。

foo)(

になる

(foo)()

実際の説明はここにあります https://github.com/joyent/node/issues/5698#issuecomment-19487718

60
thefourtheye