use of dyvilx.tools.compiler.ast.pattern.Pattern in project Dyvil by Dyvil.
the class BinaryPattern method withType.
@Override
public Pattern withType(IType type, MarkerList markers) {
final Pattern left = this.left.withType(type, markers);
if (left == null) {
return null;
}
final Pattern right = this.right.withType(type, markers);
if (right == null) {
return null;
}
this.left = left;
this.right = right;
return this.withType();
}
Aggregations