Package net.sf.cb2xml

Examples of net.sf.cb2xml.DebugLexer


            String preProcessed = CobolPreprocessor.preProcess(reader);
            StringReader sr = new StringReader(preProcessed);
            PushbackReader pbr = new PushbackReader(sr, 1000);
           
            if (debug) {
                lexer = new DebugLexer(pbr);
            } else {
                lexer = new Lexer(pbr);
            }
           
            Parser parser = new Parser(lexer);
View Full Code Here

TOP

Related Classes of net.sf.cb2xml.DebugLexer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.