JStatement.java |
1 // Copyright 2012- Bill Campbell, Swami Iyer and Bahar Akbal-Delibas 2 3 package jminusminus; 4 5 /** 6 * This abstract base class is the AST node for a statement (includes expressions). 7 */ 8 abstract class JStatement extends JAST { 9 /** 10 * Constructs an AST node for a statement. 11 * 12 * @param line line in which the statement occurs in the source file. 13 */ 14 protected JStatement(int line) { 15 super(line); 16 } 17 } 18