Package net.sf.laja.parser.engine2

Examples of net.sf.laja.parser.engine2.Output


    public GrammarParser(IGrammarFactoryFactory factoryFactory) {
        init(factoryFactory);
    }

    public void init(IGrammarFactoryFactory factoryFactory) {
        syntaxErrorHandler = new DefaultSyntaxErrorHandler();
        factory1 = factoryFactory.getFactory(PHASE1);
        factory2 = factoryFactory.getFactory(PHASE2);
        data1 = new Data(factory1);
        data2 = new Data(factory2);
    }
View Full Code Here


    public ConstructorParser(IConstructorFactoryFactory factoryFactory) {
        init(factoryFactory);
    }

    public void init(IConstructorFactoryFactory factoryFactory) {
        syntaxErrorHandler = new DefaultSyntaxErrorHandler();
        factory1 = factoryFactory.getFactory(PHASE1);
        factory2 = factoryFactory.getFactory(PHASE2);
        data1 = new Data(factory1);
        data2 = new Data(factory2);
    }
View Full Code Here

    return parse(new StringSource(string));
  }

  // parse file
  public ParsingResult parseFile(String filename) throws ParserException {
    return parse(new FileSource(filename));
  }
View Full Code Here

        return parse(new StringSource(string));
    }

    // parse file
    public ParsingResult parseFile(String filename) throws ParserException {
        return parse(new FileSource(filename));
    }
View Full Code Here

        return parse(new StringSource(string));
    }

    // parse file
    public ParsingResult parseFile(String filename) throws ParserException {
        return parse(new FileSource(filename));
    }
View Full Code Here

        return parse(new StringSource(string));
    }

    // parse file
    public ParsingResult parseFile(String filename) throws ParserException {
        return parse(new FileSource(filename));
    }
View Full Code Here

        return parse(new StringSource(string));
    }

    // parse file
    public ParsingResult parseFile(String filename) throws ParserException {
        return parse(new FileSource(filename));
    }
View Full Code Here

  @Test
  public void errorInLineOne() {
    StringSource stringSource = new StringSource("12345\n6789");
   
    final int index = 0;
    SourceLine sourceLine = stringSource.getSourceLine(index);
    SourceLine expectedLine = new SourceLine(1, 1, index, "12345", "^");
   
    assertEquals(expectedLine, sourceLine);
  }
View Full Code Here

  @Test
  public void errorInLineTwo() {
    StringSource stringSource = new StringSource("1\r\n2345\r\n67");
   
    final int index = 4;
    SourceLine sourceLine = stringSource.getSourceLine(index);
    SourceLine expectedLine = new SourceLine(2, 2, index, "2345", " ^");
   
    assertEquals(expectedLine, sourceLine);
  }
View Full Code Here

    return factory2;
  }

  // parse string
  public ParsingResult parseString(String string) throws ParserException {
    return parse(new StringSource(string));
  }
View Full Code Here

TOP

Related Classes of net.sf.laja.parser.engine2.Output

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.