23242526272829303132
private int tokenIndex = 0; private String content; public Lexer(CharStream in) { super(in); aptanaScanner = new CoffeeScanner(true); content = in.substring(0, in.size() - 1); checkTrailingZeroBytes(content); aptanaScanner.setSource(content); }