diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/parse | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/parse')
-rw-r--r-- | files/zh-cn/glossary/parse/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/parse/index.html b/files/zh-cn/glossary/parse/index.html new file mode 100644 index 0000000000..b3ea0aa8a8 --- /dev/null +++ b/files/zh-cn/glossary/parse/index.html @@ -0,0 +1,20 @@ +--- +title: Parse +slug: Glossary/Parse +translation_of: Glossary/Parse +--- +<p>Parsing means analyzing and converting a program into an internal format that a runtime environment can actually run, for example the {{glossary("JavaScript")}} engine inside browsers.</p> + +<p>Parsing 就是将程序解析以及转换成能够在运行环境中运行的计算机内部格式,浏览器中的{{glossary("JavaScript")}} 驱动就是一个很好的解析例子。</p> + +<p>In JavaScript, this is done during {{glossary("compile time")}} or whenever the {{glossary("parser")}} is invoked, such as during a call to a method.</p> + +<p>JavaScript 中的解析过程一般在{{glossary("compile time")}}中完成,或者是在任意{{glossary("parser")}} 参与的时候完成。比如说在调用一个JS方法的过程中完成parsing。</p> + +<h2 id="Learn_more">Learn more</h2> + +<h3 id="General_knowledge">General knowledge</h3> + +<ul> + <li><a href="https://en.wikipedia.org/wiki/Parsing">Parse</a> on Wikipedia</li> +</ul> |