0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/message/undefined_reference_in_new_context.js

13 lines
238 B
JavaScript
Raw Normal View History

2010-12-03 02:03:18 +01:00
common = require('../common');
assert = common.assert;
common.error('before');
var Script = process.binding('evals').Script;
// undefined reference
script = new Script('foo.bar = 5;');
script.runInNewContext();
common.error('after');