Add quickfix removing names of function expressions

This commit is contained in:
Denis Zharkov
2015-05-16 22:09:04 +03:00
parent b650753643
commit 5b1f3080d3
10 changed files with 228 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Remove identifier from function expression" "true"
fun foo() {
(fun bar<caret>() {
return@bar
})
}