本頁の目次 目次

14 プログラム (Program)

Syntax
Program :
SourceElements
SourceElements :
SourceElement
SourceElements SourceElement
SourceElement :
Statement
FunctionDeclaration
Semantics

生成規則 Program : SourceElements は次のように評価される:

  1. 関数宣言のために SourceElements を処理する。
  2. SourceElements を評価する。
  3. Result(2) を返す。

生成規則 SourceElements : SourceElement は関数宣言のためには次のように処理される:

  1. 関数宣言のための SourceElement を処理する。

生成規則 SourceElements : SourceElement は次のように評価される:

  1. SourceElement を評価する。
  2. Result(1) を返す。

生成規則 SourceElements : SourceElements SourceElement は関数宣言のためには次のように処理される:

  1. 関数宣言のために SourceElements を処理する。
  2. 関数宣言のために SourceElement を処理する。

生成規則 SourceElements : SourceElements SourceElement は次のように評価される:

  1. SourceElements を評価する。
  2. Result(1) が中途完了ならば、 Result(1) を返す。
  3. SourceElement を評価する。
  4. Result(3) を返す。

生成規則 SourceElement : Statement は関数宣言のためアクション無しで処理される。

生成規則 SourceElement : Statement 次のように評価される:

  1. Statement を評価.
  2. Result(1) を返す。

生成規則 SourceElement : FunctionDeclaration は関数宣言のためには次のように処理される:

  1. 関数宣言のために FunctionDeclaration を処理する。(セクション 13 参照)

生成規則 SourceElement : FunctionDeclaration は次のように評価される:

  1. (normal, empty, empty) を返す。

Page Contents

Issued: / Revised: / All rights reserved. © 2002-2016 TAKI