ASTLiteralString constructor

ASTLiteralString(
  1. String _value,
  2. String quotationLeft,
  3. String quotationRight, {
  4. HTSource? source,
  5. int line = 0,
  6. int column = 0,
  7. int offset = 0,
  8. int length = 0,
})

Implementation

ASTLiteralString(
  this._value,
  this.quotationLeft,
  this.quotationRight, {
  super.source,
  super.line = 0,
  super.column = 0,
  super.offset = 0,
  super.length = 0,
}) : super(Semantic.literalString);