VisitInitializer

Visit each Initializer in init. Call a function visit%s(init) for each node, where %s is the op of the node. Otherwise call visitDefault(init) for that node. If the visit function returns R.init, continue visiting each node, otherwise return the value of R.

mixin template VisitInitializer (
Result
) {}

Parameters

Result

return type

Return Value

Result.init for continue, value of type Result for early exit

Meta