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

View File

@ -6,8 +6,8 @@
</description>
<link>http://samsung.github.io/jerryscript/</link>
<atom:link href="http://samsung.github.io/jerryscript/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Sat, 13 Jun 2015 19:02:12 +0300</pubDate>
<lastBuildDate>Sat, 13 Jun 2015 19:02:12 +0300</lastBuildDate>
<pubDate>Sat, 13 Jun 2015 19:21:11 +0300</pubDate>
<lastBuildDate>Sat, 13 Jun 2015 19:21:11 +0300</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>

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>