From 8070f62764f1fc0c27789323f67d024953958670 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Fri, 4 Oct 2013 15:37:23 +0400 Subject: [PATCH] Implemented abstract methods introduced in newer IDEA. --- .../plugin/compilerMessages/MockCompileContext.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/idea/tests/org/jetbrains/jet/plugin/compilerMessages/MockCompileContext.java b/idea/tests/org/jetbrains/jet/plugin/compilerMessages/MockCompileContext.java index 17c64377102..2ae936b9f2b 100644 --- a/idea/tests/org/jetbrains/jet/plugin/compilerMessages/MockCompileContext.java +++ b/idea/tests/org/jetbrains/jet/plugin/compilerMessages/MockCompileContext.java @@ -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;