ASTNode constructor

ASTNode(
  1. String type, {
  2. bool isStatement = false,
  3. HTSource? source,
  4. int line = 0,
  5. int column = 0,
  6. int offset = 0,
  7. int length = 0,
})

Implementation

ASTNode(
  this.type, {
  this.isStatement = false,
  this.source,
  this.line = 0,
  this.column = 0,
  this.offset = 0,
  this.length = 0,
});