gpt4 book ai didi

javascript - ES6 中的 block 和执行环境

转载 作者:行者123 更新时间:2023-11-28 19:16:16 27 4
gpt4 key购买 nike

在 ES6 中,每个 block 都关联一个 LexicalEnvironment,以支持该语言版本的 block 作用域功能。

这是否意味着在 ES6 中,会为每个 block 实例化一个新的 ExecutionContext

引用:http://globaldev.co.uk/2013/09/es6-part-2/

例如(我在这里故意使用函数范围的 var):

function foo() {

{
var foo; // Has a new ExecutionContext been instantiated here?
}

}

规范的相关部分:https://people.mozilla.org/~jorendorff/es6-draft.html#sec-block-runtime-semantics-evaluation

最佳答案

不,每个函数只有一个执行环境。 The LexicalEnvironment simply temporarily replaces the current LexicalEnvironment :

  1. Let oldEnv be the running execution context’s LexicalEnvironment.
  2. Let blockEnv be NewDeclarativeEnvironment(oldEnv). Perform BlockDeclarationInstantiation(StatementList, blockEnv).
  3. Set the running execution context’s LexicalEnvironment to blockEnv.
  4. Let blockValue be the result of evaluating StatementList.
  5. Set the running execution context’s LexicalEnvironment to oldEnv.
  6. Return blockValue.

关于javascript - ES6 中的 block 和执行环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29749503/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com