TomlSinglelineString class abstract

Base class for AST nodes that represent non-multiline TOML strings (i.e., literal and basic strings).

This class is used such that quoted keys can restrict the type of the string on type level.

Inheritance
Implementers

Constructors

TomlSinglelineString()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringType TomlStringType
The type of this string.
no setterinherited
type TomlType
The type of the TOML value represented by this AST node.
no setterinherited
value String
The contents of the string.
no setterinherited

Methods

acceptStringVisitor<T>(TomlStringVisitor<T> visitor) → T
Invokes the correct visit* method for this string value of the given visitor.
inherited
acceptValueVisitor<T>(TomlValueVisitor<T> visitor) → T
Invokes the correct visit* method for this value of the given visitor.
inherited
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.
inherited

Static Properties

parser → Parser<TomlSinglelineString>
Parser for a singleline TOML string value.
final