ソースコード - SourceCode Edit

次の3種類に限定。

形式BOM
ASCIIなし
UTF8EF BB BF
UTF160xFEFF
  • UTF16はランタイム環境のバイトオーダーのみ扱う。(PPCならUTF16BE、i386ならUTF16LE)
  • ASCII,UTF8は内部ではUTF16に変換して処理を行う。
  • <検討中>最大行数はコンパイラの都合で制約を設けるかもしれない。

空白文字 - WhiteSpace Edit

  0
  1
  2
  3
  4
  5
  6
  7
WhiteSpace:
    Space
    Space WhiteSpace
 
Space:
    0x0020
    0x0009
    0x000B
    0x000C

行終端 - EndOfLine Edit

  0
  1
  2
  3
EndOfLine:
    0x000D
    0x000A
    0x000D 0x000A
    EndOfFile

ファイル終端 - EndOfFile Edit

  0
  1
  2
EndOfFile:
    physical end of the file
    0x0000
    0x001A

コメント - Comment Edit

  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
Comment:
    "/*" Characters "*/"
    "//" Characters EndOfLine
    NestingBlockComment
 
Characters:
    Character
    Character Characters
 
NestingBlockComment:
    "/+" NestingBlockCommentCharacters "+/"
 
NestingBlockCommentCharacters:
    NestingBlockCommentCharacter
    NestingBlockCommentCharacter NestingBlockCommentCharacters
 
NestingBlockCommentCharacter:
    Character
    NestingBlockComment

トークン - Token Edit

  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
Token:
    Identifier
    StringLiteral
    CharacterLiteral
    IntegerLiteral
    FloatLiteral
    Keyword
    "/"
    "/="
    "."
    "&"
    "&="
    "&&"
    "|"
    "|="
    "||"
    "-"
    "-="
    "--"
    "+"
    "+="
    "++"
    "<"
    "<="
    "<<"
    "<<="
    ">"
    ">="
    ">>="
    ">>"
    "!"
    "!="
    "("
    ")"
    "["
    "]"
    "{"
    "}"
    "?"
    ","
    ";"
    ":"
    "="
    "=="
    "*"
    "*="
    "%"
    "%="
    "^"
    "^="
    "~"
    "~="

識別子 - Identifier Edit

  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
Identifier:
    IdentiferStart
    IdentiferStart IdentifierChars
 
IdentifierChars:
    IdentiferChar
    IdentiferChar IdentifierChars
 
IdentifierStart:
    Letter
    UniversalAlpha
 
IdentifierChar:
    IdentiferStart
    NonZeroDigit
    "0"
 
Letter:
    a-zA-Z
 
UniversalAlpha:
    あいうえお...

文字列リテラル - StringLiteral Edit

文字リテラル - CharacterLiteral Edit

整数リテラル - IntegerLiteral Edit

浮動小数点数リテラル - FloatLiteral Edit

予約語 - Keyword Edit


    ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS