Implemented abstract methods introduced in newer IDEA.

This commit is contained in:
Evgeny Gerashchenko
2013-10-04 15:37:23 +04:00
parent 4f957eaf69
commit 8070f62764
@@ -169,6 +169,17 @@ public class MockCompileContext implements CompileContextEx {
throw new UnsupportedOperationException("org.jetbrains.jet.plugin.compilerMessages.MockCompileContext#requestRebuildNextTime");
}
// TODO mark with override when updating to IDEA 132.527+
public boolean isRebuildRequested() {
throw new UnsupportedOperationException("org.jetbrains.jet.plugin.compilerMessages.MockCompileContext.isRebuildRequested");
}
// TODO mark with override when updating to IDEA 132.527+
@Nullable
public String getRebuildReason() {
throw new UnsupportedOperationException("org.jetbrains.jet.plugin.compilerMessages.MockCompileContext.getRebuildReason");
}
@Override
public Module getModuleByFile(VirtualFile file) {
return module;