SourceLocation constructor

SourceLocation({
  1. ScriptRef? script,
  2. int? tokenPos,
  3. int? endTokenPos,
  4. int? line,
  5. int? column,
})

Implementation

SourceLocation({
  this.script,
  this.tokenPos,
  this.endTokenPos,
  this.line,
  this.column,
});