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