You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
663 B

package chocopy.common.astnodes;
import java_cup.runtime.ComplexSymbolFactory.Location;
/**
* Base of all AST nodes representing statements.
* <p>
* There is nothing in this class, but there will be some AST
* node types that have fields that are *any statement* or a
* list of statements. For those cases, having a field of this type will
* encompass all types of statements such as expression statements,
* if statements, while statements, etc.
*/
public abstract class Stmt extends Node {
/**
* A statement spanning source locations [LEFT..RIGHT].
*/
public Stmt(Location left, Location right) {
super(left, right);
}
}