Interpolation class
Represents converting a result or multiple results explicitly to a String.
// String Expr String
// i=0 i=0 i=1
// v v v
// Hello {{place}}!
Interpolation(
['Hello ', '!'],
[VariableRead('place'), EmptyExpr()],
)
Constructors
-
Interpolation(List<
String> strings, List<AST> expressions)
Properties
-
expressions
→ List<
AST> -
Expression(s) being converted into a string.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
strings
→ List<
String> -
For a given expression
i
, the preceding string (if any).final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
visit<
R, C, CO extends C> (AstVisitor< R, C?> visitor, [CO? context]) → R -
Given a
visitor
and optionally acontext
, produce a return valueR
.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited