MCPcopy Create free account
hub / github.com/chibash/stone / parse

Method parse

src/stone/Parser.java:23–27  ·  view source on GitHub ↗
(Lexer lexer, List<ASTree> res)

Source from the content-addressed store, hash-verified

21 protected Parser parser;
22 protected Tree(Parser p) { parser = p; }
23 protected void parse(Lexer lexer, List<ASTree> res)
24 throws ParseException
25 {
26 res.add(parser.parse(lexer));
27 }
28 protected boolean match(Lexer lexer) throws ParseException {
29 return parser.match(lexer);
30 }

Callers

nothing calls this directly

Calls 2

addMethod · 0.45
parseMethod · 0.45

Tested by

no test coverage detected