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

Method expression

src/stone/Parser.java:380–383  ·  view source on GitHub ↗
(Parser subexp, Operators operators)

Source from the content-addressed store, hash-verified

378 return this;
379 }
380 public Parser expression(Parser subexp, Operators operators) {
381 elements.add(new Expr(null, subexp, operators));
382 return this;
383 }
384 public Parser expression(Class<? extends ASTree> clazz, Parser subexp,
385 Operators operators) {
386 elements.add(new Expr(clazz, subexp, operators));

Callers 1

BasicParserClass · 0.45

Calls 1

addMethod · 0.45

Tested by

no test coverage detected