TomlQuotedKey class

AST node that represents a quoted key.

quoted-key = basic-string / literal-string
Inheritance
Annotations
  • @immutable

Constructors

TomlQuotedKey(TomlSinglelineString string)
Creates a new quoted key node.

Properties

hashCode int
The hash code for this object.
no setteroverride
name String
The actual name of this key.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
string TomlSinglelineString
The string literal that represents this key.
final

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<TomlQuotedKey>
Parser for a quoted TOML key.
final