Ruby 1.9:递归函数中的 Break 语句现在是语法错误?

发布于 2024-12-04 14:00:38 字数 276 浏览 3 评论 0原文

我正在更新一个包 (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 uses
break 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, would
return if $close
be an equivalent replacement?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏花。依旧 2024-12-11 14:00:38

2解决方案:使用系统Ruby 1.8.7或使用TM2。

2 solutions: use the system Ruby 1.8.7 or use TM2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文