Lines Matching full:hello
15 const val topLevelConstCompiled: String = "hello"
16 val topLevelCompiled: String = "hello"
17 val topLevelDelegatedCompiled by lazy { "hello" } in <lambda>()
18 var topLevelVarCompiled: String = "hello"
19 val topLevelCustomGetterCompiled: String get() = "hello"
22 val insideObjectCompiled: String = "hello"
23 val insideObjectDelegatedCompiled by lazy { "hello" } in <lambda>()
24 var insideVarObjectCompiled: String = "hello"
25 val insideObjectCustomGetterCompiled: String get() = "hello"
39 const val topLevelConstSource: String = "hello"
40 val topLevelSource: String = "hello"
41 val topLevelDelegatedSource by lazy { "hello" } in <lambda>()
42 var topLevelVarSource: String = "hello"
43 val topLevelCustomGetterSource: String get() = "hello"
46 val insideObjectSource: String = "hello"
47 val insideObjectDelegatedSource by lazy { "hello" } in <lambda>()
48 var insideVarObjectSource: String = "hello"
49 val insideObjectCustomGetterSource: String get() = "hello"