Sha256: 983adc4f808c3e7c137d006f7fe09ae07181fd2547691977dd3d0d090a6203bd
Contents?: true
Size: 444 Bytes
Versions: 135
Compression:
Stored size: 444 Bytes
Contents
/** * Copyright 2005-2007 Xue Yong Zhi * Distributed under the BSD License */ package com.xruby.compiler.codedom; import java.util.ArrayList; public abstract class Statement implements Visitable { void getNewlyAssignedVariables(ISymbolTable symboltable, ArrayList<String> result) { //Default behavior is do nothing } void pullBlock(ArrayList<Block> result) { //Default behavior is do nothing } }
Version data entries
135 entries across 135 versions & 2 rubygems