标题基本概括了所有内容。我知道如何设置一个的唯一方法是在程序运行期间或之前 breakpoint main.main有没有办法通过行号来做到这一点breakpoint ./otherfile.go:200?
2 回答
斯蒂芬大帝
TA贡献1827条经验 获得超8个赞
以下内容在 delve 中有效:
(dlv) break <breakpoint_name> <filename_pattern>:<line_number>
如果你有不明确的文件名,比如main.go遍布你的源代码和可能的供应商目录,只要让它看起来“独一无二”就可以深入研究(filename_pattern 不是你的确切文件位置)。例如:
(dlv) break myLoopingStuff project_name/loops.go:30
(dlv) condition myLoopingStuff thing == someOther.thing
- 2 回答
- 0 关注
- 202 浏览
添加回答
举报
0/150
提交
取消