Sha256: 1bac0ec98c3d18a67f95b144ff3e0a7221419ea2039e89c1e90c76563ff2d701
Contents?: true
Size: 840 Bytes
Versions: 135
Compression:
Stored size: 840 Bytes
Contents
/** * Copyright 2005-2007 Xue Yong Zhi * Distributed under the BSD License */ package com.xruby.compiler.codedom; import java.util.ArrayList; public class ParenthesisExpression extends Expression { CompoundStatement compstmt_; public ParenthesisExpression(CompoundStatement compstmt) { compstmt_ = compstmt; } public void accept(CodeVisitor visitor) { compstmt_.accept(visitor); } void ensureVariablesAreInitialized(CodeVisitor visitor) { compstmt_.ensureVariablesAreInitialized(visitor); } void getNewlyAssignedVariables(ISymbolTable symboltable, ArrayList<String> result) { compstmt_.getNewlyAssignedVariables(symboltable, result); } void pullBlock(ArrayList<Block> result) { compstmt_.pullBlock(result); } }
Version data entries
135 entries across 135 versions & 2 rubygems