当前位置: 首页>>代码示例>>Java>>正文


Java ThrowStmt类代码示例

本文整理汇总了Java中org.walkmod.javalang.ast.stmt.ThrowStmt的典型用法代码示例。如果您正苦于以下问题:Java ThrowStmt类的具体用法?Java ThrowStmt怎么用?Java ThrowStmt使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ThrowStmt类属于org.walkmod.javalang.ast.stmt包,在下文中一共展示了ThrowStmt类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public void visit(ThrowStmt n, VisitorContext ctx) {
    Object o = ctx.get(NODE_TO_COMPARE_KEY);
    if (o != null && o instanceof ThrowStmt) {
        ThrowStmt aux = (ThrowStmt) o;
        boolean backup = isUpdated();
        setIsUpdated(false);
        inferASTChanges(n.getExpr(), aux.getExpr());
        if (!isUpdated()) {
            increaseUnmodifiedNodes(ThrowStmt.class);
        } else {
            increaseUpdatedNodes(ThrowStmt.class);
        }
        setIsUpdated(backup || isUpdated());
    } else if (o != null) {
        setIsUpdated(true);
        applyUpdate(n, (Node) o);
    }
}
 
开发者ID:walkmod,项目名称:walkmod-javalang-plugin,代码行数:19,代码来源:ChangeLogVisitor.java

示例2: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public Boolean visit(ThrowStmt n1, Node arg) {
    ThrowStmt n2 = (ThrowStmt) arg;
    if (!nodeEquals(n1.getExpr(), n2.getExpr())) {
        return Boolean.FALSE;
    }
    return Boolean.TRUE;
}
 
开发者ID:rpau,项目名称:javalang,代码行数:8,代码来源:EqualsVisitor.java

示例3: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public void visit(ThrowStmt n, Object arg) {
    prepareComments(n);
    printPreviousComments(n, arg);
    printer.print("throw ");
    n.getExpr().accept(this, arg);
    printer.print(";");
}
 
开发者ID:rpau,项目名称:javalang,代码行数:8,代码来源:DumpVisitor.java

示例4: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public void visit(ThrowStmt n, VisitorContext arg) {
    if (preVisitor != null) {
        preVisitor.visit(n, arg);
    }
    super.visit(n, arg);
    if (postVisitor != null) {
        postVisitor.visit(n, arg);
    }
}
 
开发者ID:rpau,项目名称:javalang,代码行数:10,代码来源:CompositeVisitor.java

示例5: ThrowStatement

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
final public ThrowStmt ThrowStatement() throws ParseException {
    Expression expr;
    int line;
    int column;
    jj_consume_token(THROW);
    line = token.beginLine;
    column = token.beginColumn;
    expr = Expression();
    jj_consume_token(SEMICOLON);
    {
        if (true)
            return new ThrowStmt(line, column, token.endLine, token.endColumn, expr);
    }
    throw new Error("Missing return statement in function");
}
 
开发者ID:rpau,项目名称:javalang,代码行数:16,代码来源:ASTParser.java

示例6: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
@Override
public void visit(ThrowStmt n, A arg) {
    n.getExpr().accept(expressionTypeAnalyzer, arg);
    n.setSymbolData(null);
}
 
开发者ID:rpau,项目名称:javalang-compiler,代码行数:6,代码来源:SymbolVisitorAdapter.java

示例7: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public R visit(ThrowStmt n, A arg) {
    n.getExpr().accept(this, arg);
    return null;
}
 
开发者ID:rpau,项目名称:javalang,代码行数:5,代码来源:GenericVisitorAdapter.java

示例8: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
@Override
public Node visit(ThrowStmt _n, Object _arg) {
    Expression expr = cloneNodes(_n.getExpr(), _arg);
    ThrowStmt r = new ThrowStmt(_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(), _n.getEndColumn(), expr);
    return r;
}
 
开发者ID:rpau,项目名称:javalang,代码行数:7,代码来源:CloneVisitor.java

示例9: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public void visit(ThrowStmt n, A arg) {
    n.getExpr().accept(this, arg);
}
 
开发者ID:rpau,项目名称:javalang,代码行数:4,代码来源:VoidVisitorAdapter.java

示例10: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public Node visit(ThrowStmt n, A arg) {
    n.setExpr((Expression) n.getExpr().accept(this, arg));
    return n;
}
 
开发者ID:rpau,项目名称:javalang,代码行数:5,代码来源:ModifierVisitorAdapter.java

示例11: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public R visit(ThrowStmt n, A arg); 
开发者ID:rpau,项目名称:javalang,代码行数:2,代码来源:GenericVisitor.java

示例12: visit

import org.walkmod.javalang.ast.stmt.ThrowStmt; //导入依赖的package包/类
public void visit(ThrowStmt n, A arg); 
开发者ID:rpau,项目名称:javalang,代码行数:2,代码来源:VoidVisitor.java


注:本文中的org.walkmod.javalang.ast.stmt.ThrowStmt类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。