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