mirror of https://github.com/lukechilds/node.git
Browse Source
Don't cache the exported values of fully uninitialized builtins. This works by adding an additional `loading` flag that is only active during initial loading of an internal module and checking that either the module is fully loaded or is in that state before using its cached value. This has the effect that builtins modules which could not be loaded (e.g. because compilation failed due to missing stack space) can be loaded at a later point. Fixes: https://github.com/nodejs/node/issues/6899 Ref: https://github.com/nodejs/node/issues/6899 PR-URL: https://github.com/nodejs/node/pull/6907 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>v4.x
Anna Henningsen
9 years ago
committed by
Myles Borins
3 changed files with 36 additions and 7 deletions
@ -0,0 +1,22 @@ |
|||
'use strict'; |
|||
// copy console accessor because requiring ../common touches it
|
|||
const consoleDescriptor = Object.getOwnPropertyDescriptor(global, 'console'); |
|||
delete global.console; |
|||
global.console = {}; |
|||
|
|||
require('../common'); |
|||
|
|||
function a() { |
|||
try { |
|||
return a(); |
|||
} catch (e) { |
|||
const console = consoleDescriptor.get(); |
|||
if (console.log) { |
|||
console.log('Hello, World!'); |
|||
} else { |
|||
throw e; |
|||
} |
|||
} |
|||
} |
|||
|
|||
a(); |
@ -0,0 +1 @@ |
|||
Hello, World! |
Loading…
Reference in new issue