import AssemblerContext from '../Assembler/AssemblerContext'; import LineContext from '../Assembler/LineContext'; import Token from '../Token'; import TokenType from '../TokenType'; export default class LexerContext { context: AssemblerContext; line: LineContext; tokens: Token[]; inType?: TokenType; constructor(context: AssemblerContext, line: LineContext); }