Ruby 1.9:递归函数中的 Break 语句现在是语法错误?
我正在更新一个包 (GetBundles) 以与 Ruby 1.9(特别是 1.9.2)兼容。
该脚本使用 如果 $close 则中断
在(我假设)递归函数中。我假设这是一个递归函数,因为否则 Break 没有意义(除了顶级函数 def 之外,它不在块中)。这给了我一个语法错误,但是我在 Ruby 变更日志中找不到任何表明它现在是非法的。现在这是一个错误,还是脚本中的错误?
其次,会 如果$close则返回
是等价替代品吗?
谢谢!
I'm updating a bundle (GetBundles) to be compatible with Ruby 1.9 (1.9.2 specifically).
This script usesbreak if $close
in a (I'm assuming) recursive function. I'm assuming this is a recursive function since break doesn't make sense otherwise (this is not in a block except for the top-level function def). This is giving me a syntax error, however I couldn't find anything in the Ruby changelog that says it's now illegal. Is this now an error, or is it a bug in the script?
Secondly, wouldreturn if $close
be an equivalent replacement?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
2解决方案:使用系统Ruby 1.8.7或使用TM2。
2 solutions: use the system Ruby 1.8.7 or use TM2.