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

Method fillQueue

src/stone/Lexer.java:34–41  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

32 return Token.EOF;
33 }
34 private boolean fillQueue(int i) throws ParseException {
35 while (i >= queue.size())
36 if (hasMore)
37 readLine();
38 else
39 return false;
40 return true;
41 }
42 protected void readLine() throws ParseException {
43 String line;
44 try {

Callers 2

readMethod · 0.95
peekMethod · 0.95

Calls 2

readLineMethod · 0.95
sizeMethod · 0.45

Tested by

no test coverage detected