本文整理汇总了Java中org.walkmod.javalang.ast.expr.TypeExpr类的典型用法代码示例。如果您正苦于以下问题:Java TypeExpr类的具体用法?Java TypeExpr怎么用?Java TypeExpr使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TypeExpr类属于org.walkmod.javalang.ast.expr包,在下文中一共展示了TypeExpr类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
public void visit(TypeExpr n, VisitorContext ctx) {
Object o = ctx.get(NODE_TO_COMPARE_KEY);
if (o != null && o instanceof TypeExpr) {
boolean backup = isUpdated();
setIsUpdated(false);
TypeExpr aux = (TypeExpr) o;
inferASTChanges(n.getType(), aux.getType());
if (!isUpdated()) {
increaseUnmodifiedNodes(TypeParameter.class);
} else {
increaseUpdatedNodes(TypeExpr.class);
}
setIsUpdated(backup || isUpdated());
}
}
示例2: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public R visit(TypeExpr n, A arg) {
if (n.getType() != null) {
n.getType().accept(this, arg);
}
return null;
}
示例3: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public Boolean visit(TypeExpr n, Node arg) {
TypeExpr n2 = (TypeExpr) arg;
if (!nodeEquals(n.getType(), n2.getType())) {
return Boolean.FALSE;
}
return Boolean.TRUE;
}
示例4: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public void visit(TypeExpr n, Object arg) {
prepareComments(n);
printPreviousComments(n, arg);
if (n.getType() != null) {
n.getType().accept(this, arg);
}
}
示例5: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public void visit(TypeExpr n, VisitorContext arg) {
if (preVisitor != null) {
preVisitor.visit(n, arg);
}
super.visit(n, arg);
if (postVisitor != null) {
postVisitor.visit(n, arg);
}
}
示例6: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public void visit(TypeExpr n, A arg) {
super.visit(n, arg);
n.setSymbolData(n.getType().getSymbolData());
}
示例7: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
public void visit(TypeExpr n, final A arg) {
if (n.getType() != null) {
n.getType().accept(this, arg);
}
}
示例8: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
@Override
public Node visit(TypeExpr n, Object arg) {
Type t = cloneNodes(n.getType(), arg);
TypeExpr r = new TypeExpr(n.getBeginLine(), n.getBeginColumn(), n.getEndLine(), n.getEndColumn(), t);
return r;
}
示例9: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
public R visit(TypeExpr n, A arg);
示例10: visit
import org.walkmod.javalang.ast.expr.TypeExpr; //导入依赖的package包/类
public void visit(TypeExpr n, A arg);