Skip to content

Commit 0ab7c23

Browse files
committed
fix debugger
1 parent 26f2f45 commit 0ab7c23

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

  • src/main/java/com/tang/intellij/lua/debugger/emmy/value

src/main/java/com/tang/intellij/lua/debugger/emmy/value/LuaXValue.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,15 @@ class TableXValue(
259259

260260
override fun computeChildren(node: XCompositeNode) {
261261
// If children are already loaded, display them
262-
if (variable.hasChildren && children.isNotEmpty()) {
263-
val list = XValueChildrenList()
264-
children.forEach { child ->
265-
child.parent = this
266-
list.add(child.name, child)
267-
}
268-
node.addChildren(list, true)
269-
return
270-
}
262+
// if (variable.hasChildren && children.isNotEmpty()) {
263+
// val list = XValueChildrenList()
264+
// children.forEach { child ->
265+
// child.parent = this
266+
// list.add(child.name, child)
267+
// }
268+
// node.addChildren(list, true)
269+
// return
270+
// }
271271

272272
// Otherwise, need to evaluate to get children
273273
val expression = buildExpressionPath()

0 commit comments

Comments
 (0)