fwcd / kotlin-debug-adapter

Kotlin/JVM debugging for any editor/IDE using the Debug Adapter Protocol
MIT License
110 stars 19 forks source link

Add support for debugging lambda #48

Open gayanper opened 3 years ago

gayanper commented 3 years ago

For example if we write code like

"Hello".let{ it + " World}.let{println(it)}

We should be able to add debug points to first or second let blocks like we can do with javascript in vscode.