Lexer constructor

Lexer({
  1. bool stripnl = true,
  2. bool stripall = false,
  3. bool ensurenl = true,
  4. int tabsize = 0,
  5. String encoding = 'guess',
  6. bool debuggable = false,
})

Implementation

Lexer({
  this.stripnl = true,
  this.stripall = false,
  this.ensurenl = true,
  this.tabsize = 0,
  this.encoding = 'guess',
  this.debuggable = false,
});