From ffb67eb79e83f26f624ff5cbce1433d5c3d8e6a7 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Tue, 17 Nov 2015 10:41:39 +0300 Subject: [PATCH] Code cleanup --- .../jetbrains/kotlin/resolve/calls/smartcasts/DataFlowValue.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/smartcasts/DataFlowValue.kt b/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/smartcasts/DataFlowValue.kt index e59dbe7e0dd..0da8f4c11b0 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/smartcasts/DataFlowValue.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/smartcasts/DataFlowValue.kt @@ -92,6 +92,7 @@ class DataFlowValue(val id: Any?, val type: KotlinType, val kind: DataFlowValue. Object(), builtIns.nullableNothingType, Kind.OTHER, Nullability.NULL ) + @JvmField val ERROR = DataFlowValue(Object(), ErrorUtils.createErrorType("Error type for data flow"), Kind.OTHER, Nullability.IMPOSSIBLE) } }