Sha256: 65425f058a67a375286614c6ad15b90b95ab78edde2933f912b9ae0183ef8908

Contents?: true

Size: 760 Bytes

Versions: 135

Compression:

Stored size: 760 Bytes

Contents

/**
 * Copyright 2005-2007 Xue Yong Zhi
 * Distributed under the BSD License
 */

package com.xruby.compiler.codedom;

import java.util.ArrayList;

public class ExceptionHandlingExpression extends Expression {
    private final BodyStatement bodyStatement_;

    public ExceptionHandlingExpression(BodyStatement bodyStatement) {
        bodyStatement_ = bodyStatement;
    }

    public void accept(CodeVisitor visitor) {
        bodyStatement_.accept(visitor);
    }

    void pullBlock(ArrayList<Block> result) {
        bodyStatement_.pullBlock(result);
    }

    void getNewlyAssignedVariables(ISymbolTable symboltable, ArrayList<String> result) {
        bodyStatement_.getNewlyAssignedVariables(symboltable, result);
    }
}

Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-7.5.1 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-7.4.1 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-7.1.17 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-6.2.0 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-6.0.11 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.18 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.17 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.15 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.0.22 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.2 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.0.7 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.0.3 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-5.5.0 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
tauplatform-1.0.3 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
tauplatform-1.0.2 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
tauplatform-1.0.1 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-3.5.1.12 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-3.3.5 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java
rhodes-3.4.2 platform/shared/xruby/src/com/xruby/compiler/codedom/ExceptionHandlingExpression.java