如何在 Boo 中添加语言关键字以让 'when' 表现得像“如果”

发布于 2024-07-11 18:26:52 字数 180 浏览 3 评论 0 原文

我似乎无法弄清楚如何将 'when' 关键字添加到 BOO ,它应该表现为 '如果'。 我想我可以制定一个方法,但是我无法像使用 if 那样移动 when 。 任何指示将不胜感激。

-标记

I cannot seem to figure out how I can add the 'when' keyword to BOO which should behave as an 'if'. I figure I could make a method, but then I cannot move the when around like I can with if. Any pointers would be appreciated.

-Mark

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

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

发布评论

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

评论(2

江南月 2024-07-18 18:26:52

这将满足您的要求:

import Boo.Lang.Compiler.Ast
import Boo.Lang.Compiler.MetaProgramming

macro when:
    return [|
        if $(when.Arguments[0]):
            $(when.Block)
    |]

x = 1
when x == 1:
    print "x equals one"
when x == 2:
    print "x equals two"

顺便说一句,请随时(也)在 Boo 邮件列表上提问,以便更快地获得(更多)答案;)

http://groups.google.com/group/boolang/

This would do what you want:

import Boo.Lang.Compiler.Ast
import Boo.Lang.Compiler.MetaProgramming

macro when:
    return [|
        if $(when.Arguments[0]):
            $(when.Block)
    |]

x = 1
when x == 1:
    print "x equals one"
when x == 2:
    print "x equals two"

Btw, feel free to (also) ask on the Boo mailing-list to get (more) answers quicker ;)

http://groups.google.com/group/boolang/

郁金香雨 2024-07-18 18:26:52

这将是宏的工作。 从您链接到的页面来看,Boo 似乎有语法宏。

顺便说一句,为什么您需要现有功能的精确副本?

This would be a job for a macro. From the page you linked to, it seems that Boo has syntactic macros.

As an aside note, why do you need an exact duplicate of an existing functionality?

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