$(BNF
/PredefinedIdentifier := SourceCodeName (":" IdText)?
/SourceCodeName := Identifier # The name to be used in the source code.
/IdText := Empty | Identifier # The actual text of the identifier.
/Empty := "" # IdText may be empty.
/Identifier := see module $(MODLINK dil.lexer.Identifier).
/)
NB: If IdText is not defined it defaults to SourceCodeName.
Table of common and often used identifiers.
$(BNF /PredefinedIdentifier := SourceCodeName (":" IdText)? /SourceCodeName := Identifier # The name to be used in the source code. /IdText := Empty | Identifier # The actual text of the identifier. /Empty := "" # IdText may be empty. /Identifier := see module $(MODLINK dil.lexer.Identifier). /) NB: If IdText is not defined it defaults to SourceCodeName.