(expression: Option<Rc<Self>>)
| 115 | } |
| 116 | |
| 117 | pub fn new_expression_statement(expression: Option<Rc<Self>>) -> Option<Rc<Self>> { |
| 118 | Some(Rc::new(Node::ExpressionStatement(expression))) |
| 119 | } |
| 120 | |
| 121 | pub fn new_block_statement(body: Vec<Option<Rc<Self>>>) -> Option<Rc<Self>> { |
| 122 | Some(Rc::new(Node::BlockStatement { body })) |
nothing calls this directly
no outgoing calls
no test coverage detected