逆时针文档包含以下语句:
use the out-of-the-box Eclipse debugger possibilities to launch your launch configurations (Debug instead of Run
What you can currently do is being able to place breakpoints in clojure code edited either via the standard text editor
这对我来说建议使用 eclipse 单步调试器。所以我设置了以下 Clojure 代码:
(ns ccwdebugtest)
(def a 1)
X) (def b 2)
X) (def c 3)
X) (def d 4)
在每个标记的点设置调试点X)
- 然后我选择通过“调试为 > Clojure 应用程序”运行代码。
我期望得到的是启动 Eclipse 调试模式的提示 - 而是在底部启动了一个新的 REPL。
当我输入时,(println d)
我得到了结果4
。
这告诉我,我的断点当时未能中断。
我的期望不成立吗?难道我做错了什么?
(我正在运行 Eclipse Juno,在 OS X 10.8.2 上使用 Java 1.7,CCW 版本为 0.10.2.STABLE001)