use of org.kie.dmn.feel.lang.ast.TypeNode in project drools by kiegroup.
the class ASTBuilderVisitor method visitRelExpressionInstanceOf.
@Override
public BaseNode visitRelExpressionInstanceOf(FEEL_1_1Parser.RelExpressionInstanceOfContext ctx) {
BaseNode expr = visit(ctx.val);
TypeNode type = (TypeNode) visit(ctx.type());
return ASTBuilderFactory.newInstanceOfNode(ctx, expr, type);
}