Do closures keep the whole execution context alive?

后端 未结 2 1733
青春惊慌失措
青春惊慌失措 2021-01-05 18:00

I understand that closures keep the execution context alive by saving a reference to the executed function.

I\'m wondering whether the whole context is saved or only

2条回答
  •  别那么骄傲
    2021-01-05 18:46

    We can see that Chrome eliminates unused variables (unless there is a direct eval call). Consider the following code (here's a fiddle to follow along with):

    var bar = function() {
        var hello = "world";
        var unused = "nope";
        return function(s) { console.log(hello); debugger; return s; };
    }
    var g = bar();
    g(1);
    

    bar returns a function that has access to the inner variables hello and unused. The variable hello is used inside of the returned function, but unused is not. unused is entirely inaccessible after the termination of bar.

    When we run this code with Dev Tools already open (to break on the debugger statement), we see:

    We see that only hello has survived in the Closure scope. unused has disappeared. We can confirm this by going to the console (while the code is still paused) and seeing that hello is defined but accessing unused produces a ReferenceError.

    This is the fundamental principle of garbage collection in action: if a variable becomes completely inaccessible, it should be freed. No one specified that JavaScript engines must free completely inaccessible variables, but it's an obvious performance win that is indistinguishable (in language-completeness terms) from not garbage collecting unused variables.

    However, direct calls to eval can access otherwise inaccessible variables. If we modify our returned function to include a direct call to eval...

    var foo = function() {
        var hello = "world";
        var unused = "nope";
        return function(s) { console.log(hello); debugger; return eval(s) };
    }
    var f = foo();
    f(1);
    

    We see that all local Closure-scope variables are now preserved:

    This is because the environment cannot safely garbage collect any local variables, e.g., for fear that eval(s) might evaluate to unused.

    You might wonder: how can the engine reliably detect the existence of eval calls? Couldn't you do something like window["ev"+"al"](s) instead, in a way that the engine can't reliable detect? The answer is that such an "indirect" eval call does not have access to closure-scope variables and executes in the global scope. Only direct calls that use the identifier eval as part of a function call can access local variables, and that's easy to detect.

    If you're interested in learning more about direct eval calls, see my answer on global.eval is not able to visit variables in the lexical scope.

    Incidentally, this is one of the main performance-based reasons why "eval is evil". The presence of a single direct call to eval in your code prevents the entire closure from being garbage-collected.

提交回复
热议问题