pub type pm_implicit_rest_node_t = pm_implicit_rest_node;Expand description
ImplicitRestNode
Represents using a trailing comma to indicate an implicit rest parameter.
foo { |bar,| }
^ foo in [bar,]
^ for foo, in bar do end
^ foo, = bar
^Type: ::PM_IMPLICIT_REST_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_implicit_rest_node_t {
pub base: pm_node,
}Fields§
§base: pm_nodeThe embedded base node.