(declarations: Vec<Option<Rc<Self>>>)
| 142 | } |
| 143 | |
| 144 | pub fn new_variable_declaration(declarations: Vec<Option<Rc<Self>>>) -> Option<Rc<Self>> { |
| 145 | Some(Rc::new(Node::VariableDeclaration { declarations })) |
| 146 | } |
| 147 | |
| 148 | pub fn new_member_expression( |
| 149 | object: Option<Rc<Self>>, |
nothing calls this directly
no outgoing calls
no test coverage detected