我试图编写一个将令牌转换为字符串的宏。我目前的宏看起来像这样:
macro stringify {
case {
$name($token)
} => {
letstx $tokenStr = [makeValue(unwrapSyntax(#{$token}), #{here})];
return #{
$tokenStr
}
}
case {
$name($token $rest ... )
} => {
return #{
stringify($token) , stringify($rest ...)
}
}
}
这适用于将标识符转换为字符串,但无法将文字或表达式转换为字符串。这是我的测试用例及其编译内容:
stringify(a b 7 d e foo 5+9)
编译成:
'a', 'b', 7, 'd', 'e', 'foo', 5, '+', 9;
我想把它编译成:
'a', 'b', '7', 'd', 'e', 'foo', '5+9';
我认为我可以通过使用expr
模式类来实现这一点,但是当我这样做时,我收到了这个错误:
/usr/local/lib/node_modules/sweet.js/lib/sweet.js:99
throw new SyntaxError(syn.printSyntaxError(source$2, err))
^
SyntaxError: [makeValue] Cannot make value syntax object from: [object Object]
at expand$2 (/usr/local/lib/node_modules/sweet.js/lib/sweet.js:99:27)
at parse (/usr/local/lib/node_modules/sweet.js/lib/sweet.js:135:29)
at Object.compile (/usr/local/lib/node_modules/sweet.js/lib/sweet.js:143:19)
at Object.exports.run (/usr/local/lib/node_modules/sweet.js/lib/sjs.js:70:45)
at Object.<anonymous> (/usr/local/lib/node_modules/sweet.js/bin/sjs:7:23)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10
这似乎是由makeValue
函数无法处理表达式引起的。
如果有人能为我提供一些见解,我将非常感激。
答案 0 :(得分:1)
所以expr
s将是一个你需要映射的标记数组。
简单的例子:
macro str_expr {
case {
_ ($toks:expr)
} => {
var toks = #{$toks};
var toks_str = toks.map(function(tok) { return unwrapSyntax(tok); }).join("");
letstx $tok_str = [makeValue(toks_str, #{here})];
return #{
$tok_str
}
}
}
str_expr (2 + 4)
// expands to '2+4'
您只需要单独处理普通令牌案例和:expr
案例。
答案 1 :(得分:1)
这是timdiney的回答的修改版本。
macro str_expr {
case {
_ ($toks:expr)
} => {
var toks = #{$toks};
var toks_str = unwrapSyntax(toks[0]).inner.map(function(tok) {
return unwrapSyntax(tok);
}).join("");
letstx $tok_str = [makeValue(toks_str, #{here})];
return #{
$tok_str
}
}
}
console.log(str_expr (2+ 4+7 - 9 + a));
// expands into "2+3+7-9+a"