17 lines
267 B
Java
17 lines
267 B
Java
/*
|
|
* 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<>()); }
|
|
|
|
}
|