9 lines
162 B
Plaintext
9 lines
162 B
Plaintext
box MacroBoxSpec {
|
|
static function name() { return "NyIdentity" }
|
|
static function expand(ast) {
|
|
// identity transform
|
|
return ast
|
|
}
|
|
}
|
|
|