set_local_node

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "set_local_node".
... in utilities.naml
1099
1100
1101
1102
1103
1104
<macro name="set_local_node" dot_parameter="node">
    <n.if.is_null.node>
        <then.throw_runtime_exception text="can't set_local_node to null" />
    </n.if.is_null.node>
    <n.uplevel_set_var name="local_node" value="[n.node/]" />
</macro>