KotlinCompiler -stubs option

* do not fail on errors
* do not analyze function bodies
* generate "throw new RuntimeException()" in bytecode
This commit is contained in:
Stepan Koltsov
2012-02-28 15:52:59 +04:00
parent 64dc73fef2
commit 4ea99fc6ca
25 changed files with 293 additions and 143 deletions
@@ -109,7 +109,7 @@ public class StubClassBuilder extends ClassBuilder {
}
@Override
public boolean generateCode() {
return false;
public Mode generateCode() {
return Mode.SIGNATURES;
}
}