Home | History | Annotate | Download | only in blockparser

Lines Matching refs:Statement

13     private ArrayList<Statement> statementStack = new ArrayList<Statement>();
14 private Statement lastStatement;
22 statementStack.add(new Statement(0, "<root>"));
30 // push last statement onto the list
31 lastStatement = new Statement(lineNumber, content);
33 Statement parent = statementStack.get(statementStack.size()-1);
67 // push last statement onto the stack
71 // pop statement from stack
87 public static List<Statement> parse(InputStream in) throws IOException {