Got rid of the LAZY flag
This commit is contained in:
+1
-1
@@ -247,7 +247,7 @@ public class CliLightClassGenerationSupport extends LightClassGenerationSupport
|
||||
public <K, V> V get(ReadOnlySlice<K, V> slice, K key) {
|
||||
V value = super.get(slice, key);
|
||||
|
||||
if (value == null && TopDownAnalysisParameters.LAZY) {
|
||||
if (value == null) {
|
||||
if (BindingContext.FUNCTION == slice || BindingContext.VARIABLE == slice) {
|
||||
if (key instanceof JetDeclaration) {
|
||||
JetDeclaration jetDeclaration = (JetDeclaration) key;
|
||||
|
||||
Reference in New Issue
Block a user