|
From: David C. <dc...@us...> - 2005-12-24 01:43:16
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29292/src/org/rubypeople/rdt/internal/core/parser Modified Files: ShamNode.java Log Message: Incorporate current JRuby head. Fixed bug in RubySourceFileCollectionVisitor.java that caused NullPointerException. Fixed bug where UT Failures open up class not method. Index: ShamNode.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser/ShamNode.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ShamNode.java 16 Oct 2005 17:29:17 -0000 1.1 --- ShamNode.java 24 Dec 2005 01:43:07 -0000 1.2 *************** *** 15,18 **** --- 15,19 ---- import org.jruby.ast.Node; import org.jruby.ast.visitor.NodeVisitor; + import org.jruby.evaluator.Instruction; public class ShamNode extends Node { *************** *** 22,26 **** } ! public void accept(NodeVisitor visitor) { } --- 23,28 ---- } ! public Instruction accept(NodeVisitor visitor) { ! return null; } |