package org.uva.sea.ql.ast.stmt;
import org.uva.sea.ql.ast.expr.Ident;
import org.uva.sea.ql.ast.type.Type;
import org.uva.sea.ql.checker.visitor.IStmtVisitor;
public class AnswerableQuestion extends Question {
public AnswerableQuestion(Ident ident, String label, Type type) {
super(ident, label, type);
}
@Override
public void accept(IStmtVisitor sv) {
sv.visit(this);
}
}