MCPcopy Create free account
hub / github.com/dynjs/dynjs / la

Method la

src/main/java/org/dynjs/parser/js/Lexer.java:74–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

72 }
73
74 protected int la() {
75 try {
76 return this.stream.peek();
77 } catch (IOException e) {
78 throw new LexerException(e);
79 }
80 }
81
82 protected int la(int pos) {
83 try {

Callers 15

nextTokenMethod · 0.95
isHexEscapeSequenceMethod · 0.95
isNonEscapeSequenceMethod · 0.95
regexpLiteralMethod · 0.95
singleLineCommentMethod · 0.95
multiLineCommentMethod · 0.95
numericLiteralMethod · 0.95
octalLiteralMethod · 0.95
decimalLiteralMethod · 0.95
hexLiteralMethod · 0.95

Calls 1

peekMethod · 0.65

Tested by

no test coverage detected