net.consensys.cava.toml.internal.TomlParser.g4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cava-toml Show documentation
Show all versions of cava-toml Show documentation
A parser for Tom's Obvious, Minimal Language (TOML).
The newest version!
parser grammar TomlParser;
options { tokenVocab=TomlLexer; }
@header {
package net.consensys.cava.toml.internal;
}
// Document parser
toml : NewLine* (expression (NewLine+ expression)* NewLine*)? EOF;
expression
: keyval
| table
;
// Key string parser
tomlKey : key EOF;
// Key-Value pairs
keyval : key Equals val;
key : simpleKey (Dot simpleKey)*;
simpleKey
: quotedKey
| unquotedKey
;
unquotedKey : UnquotedKey;
quotedKey
: basicString
| literalString
;
val
: string
| integer
| floatValue
| booleanValue
| dateTime
| array
| inlineTable
;
// String
string
: mlBasicString
| basicString
| mlLiteralString
| literalString
;
// Basic String
basicString : QuotationMark basicChar* QuotationMark;
basicChar
: basicUnescaped
| escaped
;
basicUnescaped : StringChar;
escaped : EscapeSequence;
// Multiline Basic String
mlBasicString : TripleQuotationMark mlBasicChar* TripleQuotationMark;
mlBasicChar
: mlBasicUnescaped
| escaped;
mlBasicUnescaped : StringChar | NewLine;
// Literal String
literalString : Apostrophe literalBody Apostrophe;
literalBody : StringChar*;
// Multiline Literal String
mlLiteralString : TripleApostrophe mlLiteralBody TripleApostrophe;
mlLiteralBody : (StringChar | NewLine)*;
// Integer
integer
: decInt
| hexInt
| octInt
| binInt
;
decInt : DecimalInteger;
hexInt : HexInteger;
octInt : OctalInteger;
binInt : BinaryInteger;
// Float
floatValue
: regularFloat
| regularFloatInf
| regularFloatNaN
;
regularFloat : FloatingPoint;
regularFloatInf : FloatingPointInf;
regularFloatNaN : FloatingPointNaN;
// Boolean
booleanValue
: trueBool
| falseBool
;
trueBool : TrueBoolean;
falseBool : FalseBoolean;
// Date and Time
dateTime
: offsetDateTime
| localDateTime
| localDate
| localTime
;
offsetDateTime : date TimeDelimiter time timeOffset;
localDateTime : date TimeDelimiter time;
localDate : date;
localTime : time;
date : year Dash month Dash day;
time : hour Colon minute Colon second (Dot secondFraction)?;
timeOffset
: Z
| hourOffset Colon minuteOffset
;
hourOffset : (Dash | Plus) hour;
minuteOffset : DateDigits;
secondFraction : DateDigits;
year : DateDigits;
month : DateDigits;
day : DateDigits;
hour : DateDigits;
minute : DateDigits;
second : DateDigits;
// Array
array : ArrayStart (arrayValues Comma?)? NewLine* ArrayEnd;
arrayValues : arrayValue (Comma arrayValue)*;
arrayValue : NewLine* val;
// Table
table
: standardTable
| arrayTable
;
// Standard Table
standardTable : TableKeyStart key? TableKeyEnd;
// Inline Table
inlineTable : InlineTableStart inlineTableValues? InlineTableEnd;
inlineTableValues : keyval (Comma keyval)*;
// Array Table
arrayTable : ArrayTableKeyStart key? ArrayTableKeyEnd;