MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / require

Method require

chapter21/src/main/java/com/seaofnodes/simple/Parser.java:1501–1501  ·  view source on GitHub ↗
(String syntax)

Source from the content-addressed store, hash-verified

1499
1500 // Require an exact match
1501 private Parser require(String syntax) { require(null, syntax); return this; }
1502 private <N> N require(N n, String syntax) {
1503 if (match(syntax)) return n;
1504 throw errorSyntax(syntax);

Callers 14

parseStatementMethod · 0.95
parseWhileMethod · 0.95
parseForMethod · 0.95
parseLoopingMethod · 0.95
parseContinueMethod · 0.95
parseBreakMethod · 0.95
parseIfMethod · 0.95
parseReturnMethod · 0.95
parseStructMethod · 0.95
parsePrimaryMethod · 0.95
allocMethod · 0.95

Calls 2

matchMethod · 0.95
errorSyntaxMethod · 0.95

Tested by

no test coverage detected