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

Method matchx

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

Source from the content-addressed store, hash-verified

666 private boolean match (String syntax) { return _lexer.match (syntax); }
667 // Match must be "exact", not be followed by more id letters
668 private boolean matchx(String syntax) { return _lexer.matchx(syntax); }
669 // Return true and do NOT skip if 'ch' is next
670 private boolean peek(char ch) { return _lexer.peek(ch); }
671 private boolean peekIsId() { return _lexer.peekIsId(); }

Callers 4

parseStatementMethod · 0.95
parseFieldMethod · 0.95
parseIfMethod · 0.95
parsePrimaryMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected