(declarations: Vec<Option<Rc<Self>>>)
| 133 | } |
| 134 | |
| 135 | pub fn new_variable_declaration(declarations: Vec<Option<Rc<Self>>>) -> Option<Rc<Self>> { |
| 136 | Some(Rc::new(Node::VariableDeclaration { declarations })) |
| 137 | } |
| 138 | |
| 139 | pub fn new_member_expression( |
| 140 | object: Option<Rc<Self>>, |
nothing calls this directly
no outgoing calls
no test coverage detected