blob: 7ba299a2681a4467be69e624989b24e82cad4fca [file] [log] [blame]
package org.eclipse.dltk.ruby.internal.parser;
import org.eclipse.dltk.ast.parser.ISourceParser;
import org.eclipse.dltk.ast.parser.ISourceParserFactory;
/**
* Returns instances of the JRuby source parser
*/
public class JRubySourceParserFactory implements ISourceParserFactory {
@Override
public ISourceParser createSourceParser() {
return new JRubySourceParser();
}
}