Pass isPackage = false when processing class proto

KT-8487
This commit is contained in:
Alexey Tsvetkov
2016-02-19 16:00:09 +03:00
parent eff972d613
commit ba386f031b
7 changed files with 14 additions and 8 deletions
@@ -191,7 +191,7 @@ open class IncrementalCacheImpl<Target>(
addToClassStorage(kotlinClass, sourceFiles.first())
protoMap.process(kotlinClass, isPackage = false) +
constantsMap.process(kotlinClass, isPackage = true) +
constantsMap.process(kotlinClass, isPackage = false) +
inlineFunctionsMap.process(kotlinClass, isPackage = false)
}
else -> CompilationResult.NO_CHANGES