pub type pm_post_execution_node_t = pm_post_execution_node;Expand description
PostExecutionNode
Represents the use of the END keyword.
END { foo }
^^^^^^^^^^^Type: ::PM_POST_EXECUTION_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_post_execution_node_t {
pub base: pm_node,
pub statements: *mut pm_statements_node,
pub keyword_loc: pm_location_t,
pub opening_loc: pm_location_t,
pub closing_loc: pm_location_t,
}Fields§
§base: pm_nodeThe embedded base node.
statements: *mut pm_statements_nodePostExecutionNode#statements
keyword_loc: pm_location_tPostExecutionNode#keyword_loc
opening_loc: pm_location_tPostExecutionNode#opening_loc
closing_loc: pm_location_tPostExecutionNode#closing_loc