Sha256: 73490bf4150b95ec00559b921746da2742d5d1a4a0349f349e70520997ca8e5e

Contents?: true

Size: 717 Bytes

Versions: 135

Compression:

Stored size: 717 Bytes

Contents

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

package com.xruby.compiler.parser;

import java.util.ArrayList;

class SymbolTable {
	private final ArrayList<String> variables_ = new ArrayList<String>();
	
	public void addVariable(String s) {
		variables_.add(s);
	}
	
	public boolean findVariable(String s) {
		return variables_.indexOf(s) >= 0;
	}
}

class SymbolTableForBlock extends SymbolTable {
	private SymbolTable owner_;
	
	public SymbolTableForBlock(SymbolTable owner) {
		owner_ = owner;
	}
	
	public boolean findVariable(String s) {
		if (super.findVariable(s)) {
			return true;
		} else {
			return owner_.findVariable(s);
		}
	}
}

Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-7.5.1 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-7.4.1 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-7.1.17 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-6.2.0 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-6.0.11 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.18 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.17 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.15 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.0.22 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.2 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.0.7 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.0.3 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-5.5.0 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
tauplatform-1.0.3 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
tauplatform-1.0.2 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
tauplatform-1.0.1 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-3.5.1.12 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-3.3.5 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java
rhodes-3.4.2 platform/shared/xruby/src/com/xruby/compiler/parser/SymbolTable.java