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

Method match

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

Source from the content-addressed store, hash-verified

1789
1790 // Return true and skip if "syntax" is next in the stream.
1791 private boolean match (String syntax) { return _lexer.match (syntax); }
1792 // Match must be "exact", not be followed by more id letters
1793 private boolean matchx(String syntax) { return _lexer.matchx(syntax); }
1794 private boolean matchOp(char c0 ) { return _lexer.matchOp(c0); }

Callers 15

parseStatementMethod · 0.95
parseForMethod · 0.95
parseTrinaryMethod · 0.95
parseDeclarationMethod · 0.95
typeMethod · 0.95
typeFunPtrMethod · 0.95
parseExpressionMethod · 0.95
parseLogicalMethod · 0.95
parseBitwiseMethod · 0.95
parseEqualityMethod · 0.95
parseComparisonMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected