Skip to content

Commit ccf23d1

Browse files
committed
bug fix
1 parent 5699da2 commit ccf23d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/tang/intellij/lua/editor/LuaBreadcrumbsProvider.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class LuaBreadcrumbsProvider : BreadcrumbsProvider {
4848
when (parent2) {
4949
is LuaClassMethodDef -> "${parent2.classMethodName.text}${parent2.paramSignature}"
5050
is LuaClosureExpr -> "function${parent2.paramSignature}"
51+
is LuaFuncDef -> "function${parent2.paramSignature}"
5152
is LuaLocalFuncDef -> "local function ${parent2.name}"
5253
else -> "<?>"
5354
}

0 commit comments

Comments
 (0)