UNPKG

litenode

Version:

Lightweight and modular web framework

12 lines (11 loc) 208 B
export class TokenizerState { constructor(source) { this.source = source this.tokens = [] this.start = 0 this.current = 0 this.position = 0 this.isInExpression = false this.braceCount = 0 } }