TomlExpression class abstract

Base class of all TOML expression nodes.

Expressions are either TomlKeyValuePairs or TomlTables.

expression =  ws [ comment ]
expression =/ ws keyval ws [ comment ]
expression =/ ws table ws [ comment ]
Inheritance
Implementers

Constructors

TomlExpression()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

acceptExpressionVisitor<T>(TomlExpressionVisitor<T> visitor) → T
Invokes the correct visit* method for this expression of the given visitor.
acceptVisitor<T>(TomlVisitor<T> visitor) → T
Invokes the correct visit* method for this value of the given visitor.
override
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<TomlExpression?>
Parser for TOML expressions.
final