716c9f79f7
It seems like it doesn't make much sense to create expression code fragments. People type statements or several expressions separated with a semicolon to a single-line expression line. That is exactly what block code fragment was designed for.
9 lines
126 B
Kotlin
Vendored
9 lines
126 B
Kotlin
Vendored
package functionDeclaration
|
|
|
|
fun main() {
|
|
//Breakpoint!
|
|
val a = 5
|
|
}
|
|
|
|
// EXPRESSION: fun foo() {}
|
|
// RESULT: VOID_VALUE |