将参数传递给Haxe宏

时间:2014-04-06 21:00:09

标签: macros haxe

我将参数传递给宏函数时遇到了问题。

我想将一个字符串传递给一个看起来像这样的函数:

macro public static function getTags(?type : String)

但是出现了编译错误:

  

haxe.macro.Expr应为Null< String>

因此,根据文档,我将其更改为:

macro public static function getTags(?type : haxe.macro.Expr.ExprOf<String>)

这有效,但我怎样才能访问字符串值?如果我追踪我的类型,我会得到这个:

  

{expr =&gt; EConst(CIdent(type)),pos =&gt; #pos(lib / wx / core / container / ServiceContainer.hx:87:characters 36-40)}

我认为我必须打开type.expr,但我的const包含变量名,而不是值..如何访问该值?是否有更简单的方法来获得此值(例如,没有开关)。

我认为这是因为对函数的调用不在宏中,我认为我想做的事情是不可能的,但我更喜欢问。 :)

1 个答案:

答案 0 :(得分:2)

如您所述,请使用variable capture in pattern matching

class Test {
    macro public static function getTags(?type : haxe.macro.Expr.ExprOf<String>) {
        var str = switch(type.expr) {
            case EConst(CString(str)):
                str;
            default:
                throw "type should be string const";
        }
        trace(str);
        return type;
    }
    static function main() {
        getTags("abc"); //Test.hx:10: abc

        var v = "abc";
        getTags(v); //Test.hx:7: characters 13-18 : type should be string const
    }
}

请注意,如上所示,如果输入表达式是文字字符串,则宏函数只能提取字符串值。请记住,宏函数是在编译时运行的,因此它不知道变量的运行时值。