Sha256: 57723c43f0cf9edd26cc216cb634236d00f12a25a81fd1a60784d2c7e51a4b87

Contents?: true

Size: 596 Bytes

Versions: 135

Compression:

Stored size: 596 Bytes

Contents

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

package com.xruby.compiler.codedom;

public class Program extends Expression implements Visitable {
	
	private CompoundStatement compoundStatement_;
	
	public Program(CompoundStatement compoundStatement) {
		compoundStatement_ = compoundStatement;
	}

	public void accept(CodeVisitor visitor) {
		if (null == compoundStatement_) {
			visitor.visitEof(false);
			return;
		}

		compoundStatement_.accept(visitor);
		visitor.visitEof(compoundStatement_.lastStatementHasReturnValue());
	}
}

Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-2.0.0.beta7 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-2.0.0.beta6 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-2.0.0.beta4 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-2.0.0.beta3 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.5 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-2.0.0.beta2 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-2.0.0.beta1 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.4 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.3 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.2 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.1 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.5.0 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.4.2 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.4.1 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java
rhodes-1.4.0 platform/shared/xruby/src/com/xruby/compiler/codedom/Program.java