TomlUnquotedKey class
AST node that represents an unquoted key.
unquoted-key = 1*( ALPHA / DIGIT / %x2D / %x5F )
; A-Z / a-z / 0-9 / - / _
- Inheritance
-
- Object
- TomlNode
- TomlSimpleKey
- TomlUnquotedKey
- Annotations
-
- @immutable
Constructors
- TomlUnquotedKey.new(String name)
- Creates a new unquoted key node.
Properties
Methods
-
acceptSimpleKeyVisitor<
T> (TomlSimpleKeyVisitor< T> visitor) → T -
Invokes the correct
visit*
method for this value of the given visitor.override -
acceptVisitor<
T> (TomlVisitor< T> visitor) → T -
Invokes the correct
visit*
method for this value of the given visitor.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override
Static Properties
-
parser
→ Parser<
TomlUnquotedKey> -
Parser for an unquoted TOML key.
final