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