文 - Statement Edit

BlockStatement Edit

  0
BlockStatement:
  "{" (Statement)* "}" 

ExpressionStatement Edit

  0
ExpressionStatement:
  Expression ";"

WhileStatement Edit

  0
WhileStatement:
  "while" "(" Expression ")" Statement

ContinueStatement Edit

  0
ContinueStatement:
  "continue" ";"

BreakStatement Edit

  0
BreakStatement:
  "break" ";"

ReturnStatement Edit

  0
  1
ReturnStatement;
  "return" ";"
  "return" Expression ";"

IfStatement Edit

  0
  1
IfStatement:
  "if" "(" Expression ")" Statement
  "if" "(" Expression ")" Statement "else" Statement

ForStatement Edit

すべてを展開すべてを収束
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ForStatement:
  "for" "(" ForInitialize ForCondition ForIncrement ")" Statement
 
ForInitialize:
  Statement
  ";"
 
ForCondition:
  Expression
  ";"
 
ForIncrement:
  Expression
  empty

ReturnStatement Edit

すべてを展開すべてを収束
  1
  2
  3
 
 
 
ReturnStatement:
  "return" ";"
  "return" Expression ";"

リロード   新規 下位ページ作成 編集 凍結 差分 添付 コピー 名前変更   ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS
Last-modified: Mon, 09 Aug 2010 17:40:55 JST (4999d)