cminus/submit/ast/Statement.java

17 lines
267 B
Java
Raw Normal View History

2023-04-10 11:17:11 -04:00
/*
* Code formatter project
* CS 4481
*/
package submit.ast;
import java.util.ArrayList;
/**
*
* @author edwajohn
*/
public interface Statement extends Node {
public static CompoundStatement empty() { return new CompoundStatement(new ArrayList<>()); }
}