package de.dhbwstuttgart.syntaxtree.statement; import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH; public abstract class Statement extends Executeable { public Statement(RefTypeOrTPH type, int offset) { super(type,offset); } }