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

Method Expr

src/stone/Parser.java:186–192  ·  view source on GitHub ↗
(Class<? extends ASTree> clazz, Parser exp,
                       Operators map)

Source from the content-addressed store, hash-verified

184 protected Operators ops;
185 protected Parser factor;
186 protected Expr(Class<? extends ASTree> clazz, Parser exp,
187 Operators map)
188 {
189 factory = Factory.getForASTList(clazz);
190 ops = map;
191 factor = exp;
192 }
193 public void parse(Lexer lexer, List<ASTree> res) throws ParseException {
194 ASTree right = factor.parse(lexer);
195 Precedence prec;

Callers

nothing calls this directly

Calls 1

getForASTListMethod · 0.95

Tested by

no test coverage detected