Skip to content

Commit 1898caf

Browse files
committed
Fix API breaking changes for debugger
1 parent 47af38d commit 1898caf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/debugger/debugsession.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,9 @@ func (s *session) convertStorageMapToDAPVariables(
652652

653653
members := make([]dap.Variable, 0, value.Count())
654654

655-
it := value.Iterator(inter)
655+
it := value.Iterator()
656656
for {
657-
key, value := it.Next()
657+
key, value := it.Next(inter)
658658
if key == nil {
659659
break
660660
}

0 commit comments

Comments
 (0)