Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 clojurescript 中创建断点?在 repl 或 chromes 本机调试器中。
我已经尝试过 (js* "debugger") 并且返回
SyntaxError:意外的令牌调试器
谢谢!
(js* "debugger;")应该管用。您只是缺少分号。
(js* "debugger;")
万一以后有人看到这个,
如果你在一个go块内,你可能需要使用这个:(js* "0; debugger")因为 go 宏在任何地方创建变量定义,所以修复那个场景。
go
(js* "0; debugger")
如果由于其他原因它没有,请检查错误日志,您一定喜欢通过添加一些东西来“破解”无效编译。