This commit is contained in:
Evgeny Gavrin
2015-06-13 19:21:38 +03:00
parent 3929590e13
commit 45fa11e195
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -78,7 +78,7 @@
</header>
<article class="post-content">
<p><img src="/img/engines_high_level_design.jpg" alt="High-Level Design" /></p>
<p><img src="/jerryscript/img/engines_high_level_design.jpg" alt="High-Level Design" /></p>
<p>On the diagram above is shown interaction of major components of software system: Parser and Runtime. Parser performs translation of input ECMAScript application into byte-code with specified format (refer to <a href="/internals/#byte-code">Bytecode</a> and <a href="/internals/#parser">Parser</a> page for details). Prepared bytecode is executed by Runtime engine that performs interpretation (refer to <a href="/internals/#virtual-machine">Virtual Machine</a> and <a href="/internals/#ECMA">ECMA</a> pages for details).</p>