ASTStringInterpolation constructor

ASTStringInterpolation(
  1. String text,
  2. String quotationLeft,
  3. String quotationRight,
  4. List<ASTNode> interpolations, {
  5. HTSource? source,
  6. int line = 0,
  7. int column = 0,
  8. int offset = 0,
  9. int length = 0,
})

Implementation

ASTStringInterpolation(
  this.text,
  this.quotationLeft,
  this.quotationRight,
  this.interpolations, {
  super.source,
  super.line = 0,
  super.column = 0,
  super.offset = 0,
  super.length = 0,
}) : super(Semantic.literalStringInterpolation) {
  // for (final ast in interpolations) {
  //   ast.parent = this;
  // }
}