Make python console extracting completion data from REPL
This commit is contained in:
Oleg Shpynov
2010-04-13 16:16:55 +04:00
parent 1fab705587
commit 07bc06c754
2 changed files with 5 additions and 1 deletions
@@ -28,6 +28,10 @@ public abstract class PsiPolyVariantReferenceBase<T extends PsiElement> extends
super(psiElement);
}
public PsiPolyVariantReferenceBase(final T psiElement, final boolean soft) {
super(psiElement, soft);
}
public PsiPolyVariantReferenceBase(final T element, final TextRange range, final boolean soft) {
super(element, range, soft);
}
@@ -30,7 +30,7 @@ import javax.swing.*;
* @author Gregory.Shrago
*/
public class LanguageConsoleViewImpl extends ConsoleViewImpl {
private LanguageConsoleImpl myConsole;
protected LanguageConsoleImpl myConsole;
public LanguageConsoleViewImpl(final Project project, String title, final Language language) {
this(project, new LanguageConsoleImpl(project, title, language));