ParseState constructor

ParseState(
  1. String source, {
  2. bool init = true,
})

Implementation

ParseState(this.source, {bool init = true}) : length = source.length {
  if (init) {
    getChar(this, 0);
  }
}