|
From: Christopher W. <caw...@us...> - 2006-04-07 16:42:49
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18040/src/org/rubypeople/rdt/core Modified Files: IRubyProject.java Log Message: fix a nasty infinite loop that showe dup when using the RubyBrowsingPerspective. Also fix the source range/position for singleton/class methods. Index: IRubyProject.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/IRubyProject.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** IRubyProject.java 29 Mar 2006 22:46:21 -0000 1.7 --- IRubyProject.java 7 Apr 2006 16:42:45 -0000 1.8 *************** *** 28,31 **** --- 28,32 ---- import java.util.Map; + import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; *************** *** 109,112 **** --- 110,115 ---- public abstract boolean isOnLoadpath(IRubyScript element); + + public IRubyScript getRubyScript(IFile file); } \ No newline at end of file |