Farkle


Comment Type

A type of source code comment. As everybody might know, comments are the text fragments that are ignored by the parser.

Union cases

Union case Description

BlockComment(BlockStart, BlockEnd)

Full Usage: BlockComment(BlockStart, BlockEnd)

Parameters:
    BlockStart : string
    BlockEnd : string

A block comment. It starts when the first literal is encountered, and ends when when the second literal is encountered.

BlockStart : string
BlockEnd : string

LineComment string

Full Usage: LineComment string

Parameters:
    Item : string

A line comment. It starts when the given literal is encountered, and ends when the line ends.

Item : string