|
From: Christopher W. <caw...@us...> - 2006-04-04 23:10:54
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23857/src/org/rubypeople/rdt/internal/core Modified Files: RubyScriptStructureBuilder.java Log Message: parse out arguments to methods and stick it in model Index: RubyScriptStructureBuilder.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyScriptStructureBuilder.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RubyScriptStructureBuilder.java 18 Feb 2006 16:50:17 -0000 1.18 --- RubyScriptStructureBuilder.java 4 Apr 2006 23:10:47 -0000 1.19 *************** *** 34,37 **** --- 34,38 ---- import org.jruby.ast.ArgsCatNode; import org.jruby.ast.ArgsNode; + import org.jruby.ast.ArgumentNode; import org.jruby.ast.ArrayNode; import org.jruby.ast.BackRefNode; *************** *** 77,80 **** --- 78,82 ---- import org.jruby.ast.InstVarNode; [...1947 lines suppressed...] ! return null; } *************** *** 1680,1685 **** private Instruction handleNode(Node visited) { // TODO Uncomment for logging? ! if (DEBUG ) System.out.println(visited.toString() + ", position -> " + visited.getPosition()); ! return null; } --- 1781,1788 ---- private Instruction handleNode(Node visited) { // TODO Uncomment for logging? ! // if (DEBUG) ! System.out.println(visited.toString() + ", position -> " ! + visited.getPosition()); ! return null; } |