use of org.elasticsearch.painless.node.EExplicit in project elasticsearch by elastic.
the class Walker method visitCast.
@Override
public ANode visitCast(CastContext ctx) {
String type = ctx.decltype().getText();
AExpression child = (AExpression) visit(ctx.unary());
return new EExplicit(location(ctx), type, child);
}
Aggregations