This article describes in some details our interpreter which we have created during the course Essentials of interpretation. We summarize intermediate results and the main parts of the evaluator making notes which were omitted in the code articles. Continue reading
Scope chain
There are 5 posts tagged Scope chain.
JavaScript. Ядро.
Read this article in: English, Japanese, German, French, Chinese.
Обратите внимание: доступна обновленная вторая редакция данной статьи.
Данная обзорная лекция является обобщением того, что мы изучили в курсе “Тонкости ECMA-262-3“. Каждый раздел статьи содержит ссылки на соответствующие главы цикла ES3, который вы, в случае желания и интереса, можете рассмотреть подробно, получив более глубокие и детальные описания тем. Continue reading
JavaScript. The Core.
Read this article in: Japanese, German, Russian, French, Polish.
Note: a new 2nd Edition of this article is available.
This note is an overview and summary of the “ECMA-262-3 in detail” series. Every section contains references to the appropriate matching chapters so you can read them to get a deeper understanding. Continue reading
ECMA-262-3 in detail. Chapter 4. Scope chain.
Read this article in: Russian, Chinese (version 1, version 2), Korean, French.
Introduction
As we already know from the second chapter concerning the variable object, the data of an execution context (variables, function declarations, and formal parameters of functions) are stored as properties of the variables object. Continue reading
Тонкости ECMA-262-3. Часть 4. Цепь областей видимости.
Read this article in: English, Chinese (version 1, version 2), Korean, French.
Введение
Как нам уже известно из второй заметки, касающейся объекта переменных, данные контекста исполнения (переменные, декларации функции и формальные параметры функций) хранятся свойствами этого объекта переменных.
Continue reading