我在这里阅读了有关在 REPL 代码中使用该breakIf
方法进行交互式调试的信息,但后来我发现这篇文章这么说,break
并breakIf
从ILoop
Scala 2.10 中删除。不幸的是,该帖子没有解释为什么删除代码。
我假设这些功能已被删除,因为有更好的方法来做到这一点。如果是这样的话,有人可以启发我吗?
也许这个想法是你应该ILoop
直接使用?据我所知,它不应该比以下复杂得多:
// insert the code below wherever you want a REPL
val repl = new ILoop
repl.settings = new Settings
repl.in = SimpleReader()
repl.createInterpreter()
// bind any local variables that you want to have access to
repl.intp.bind("i", "Int", i)
repl.intp.bind("e", "Exception", e)
// start the interpreter and then close it after you :quit
repl.loop()
repl.closeInterpreter()
与旧的breakIf
API 相比,这种方法摆脱了额外的间接级别,用于if
条件(被包装到 a 中=> Boolean
)和DebugParam
/ NamedParam
(它们是临时包装器,仅用于填充bind
参数)。
这种方法还允许您Settings
根据需要指定您的。例如,可以解决一些 REPL 错误,-Yrepl-sync
但break
无法指定.