TomlStandardTable class
A TOML expression AST node that represents the header of a standard TOML table.
std-table = std-table-open key std-table-close
- Inheritance
-
- Object
- TomlNode
- TomlExpression
- TomlTable
- TomlStandardTable
- Annotations
-
- @immutable
Constructors
- TomlStandardTable.new(TomlKey name)
- Creates a new TOML standard table.
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- name → TomlKey
-
The name of the table or array of tables.
finalinherited
- 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 setteroverride
Methods
-
acceptExpressionVisitor<
T> (TomlExpressionVisitor< T> visitor) → T -
Invokes the correct
visit*
method for this expression 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
- closingDelimiter → String
-
The opening delimited of the standard table header.
std-table-close = ws %x5D ; ] Right square bracket
final
- openingDelimiter → String
-
The opening delimited of the standard table header.
final
-
parser
→ Parser<
TomlStandardTable> -
Parser for a standard TOML table header.
final