From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/parse/index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 files/zh-cn/glossary/parse/index.html (limited to 'files/zh-cn/glossary/parse') 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 +--- +

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.

+ +

Parsing 就是将程序解析以及转换成能够在运行环境中运行的计算机内部格式,浏览器中的{{glossary("JavaScript")}} 驱动就是一个很好的解析例子。

+ +

In JavaScript, this is done during {{glossary("compile time")}} or whenever the {{glossary("parser")}} is invoked, such as during a call to a method.

+ +

JavaScript 中的解析过程一般在{{glossary("compile time")}}中完成,或者是在任意{{glossary("parser")}} 参与的时候完成。比如说在调用一个JS方法的过程中完成parsing。

+ +

Learn more

+ +

General knowledge

+ + -- cgit v1.2.3-54-g00ecf