
org.fulib.scenarios.ast.expr.ExprDelegate Maven / Gradle / Ivy
package org.fulib.scenarios.ast.expr;
import org.fulib.scenarios.ast.type.Type;
import org.fulib.scenarios.visitor.Typer;
public class ExprDelegate
{
public static Type getType(Expr expr)
{
return expr.accept(Typer.INSTANCE, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy