macro_rules! pw {
($prog: ident, $store: ident, $b: block) => { ... };
}Expand description
Internal helper macro for the code generator. It creates a ProgWriter
instance from the given code block.
$prog is the variable of the
Prog and $store is the supplied store type that is requested
by the parent of this AST node.