We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3fa19e commit 7bf32e2Copy full SHA for 7bf32e2
compiler/cli/src/org/jetbrains/jet/cli/jvm/K2JVMCompiler.java
@@ -149,6 +149,13 @@ protected K2JVMCompilerArguments createArguments() {
149
return new K2JVMCompilerArguments();
150
}
151
152
+ // TODO this method is here only to workaround KT-2498
153
+ @Override
154
+ protected void configureEnvironment(@NotNull K2JVMCompileEnvironmentConfiguration configuration,
155
+ @NotNull K2JVMCompilerArguments arguments) {
156
+ super.configureEnvironment(configuration, arguments);
157
+ }
158
+
159
//TODO: Hacked! Be sure that our kotlin stuff builds correctly before you remove.
160
// our compiler throws method not found error
161
// probably relates to KT-1863... well, may be not
0 commit comments