|
From: <caw...@us...> - 2007-08-22 21:11:25
|
Revision: 3051
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=3051&view=rev
Author: cawilliams
Date: 2007-08-22 14:11:24 -0700 (Wed, 22 Aug 2007)
Log Message:
-----------
update to latest JRuby. Also fix ITypeHierarchy interface to refer to modules and not interfaces
Modified Paths:
--------------
trunk/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser/TC_RubyParser.java
Modified: trunk/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser/TC_RubyParser.java
===================================================================
--- trunk/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser/TC_RubyParser.java 2007-08-22 21:11:19 UTC (rev 3050)
+++ trunk/org.rubypeople.rdt.core.tests/src/org/rubypeople/rdt/internal/core/parser/TC_RubyParser.java 2007-08-22 21:11:24 UTC (rev 3051)
@@ -16,7 +16,7 @@
import org.jruby.ast.Node;
import org.jruby.lexer.yacc.LexerSource;
import org.jruby.parser.DefaultRubyParser;
-import org.jruby.parser.RubyParserConfiguration;
+import org.jruby.parser.ParserConfiguration;
import org.jruby.parser.RubyParserResult;
import org.rubypeople.eclipse.shams.resources.ShamFile;
@@ -62,7 +62,7 @@
private static class ShamDefaultRubyParser extends DefaultRubyParser {
private RubyParserResult result;
- public RubyParserResult parse(RubyParserConfiguration config, LexerSource source) {
+ public RubyParserResult parse(ParserConfiguration config, LexerSource source) {
return result;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|