Add ability to filter out some particular classes from generator

This commit is contained in:
Nikolay Krasko
2014-02-12 15:38:23 +04:00
parent ef051fac04
commit ac4fe93774
10 changed files with 129 additions and 53 deletions
@@ -0,0 +1,7 @@
class A
fun foo() {
trait Z: A {}
fun bar() {
class <caret>O2: Z {}
}
}