TomlTable class abstract

Base class of all TOML table header expressions.

There are two types of tables TomlStandardTables and TomlArrayTables.

table = std-table / array-table
Inheritance
Implementers

Constructors

TomlTable(TomlKey name)
Creates a new table.

Properties

hashCode int
The hash code for this object.
no setterinherited
name TomlKey
The name of the table or array of tables.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type TomlTableType
The type of table declared by this table header.
no setter

Methods

acceptExpressionVisitor<T>(TomlExpressionVisitor<T> visitor) → T
Invokes the correct visit* method for this expression 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<TomlTable>
Parser for a TOML table header.
final