(
callee: Option<Rc<Self>>,
arguments: Vec<Option<Rc<Self>>>,
)
| 153 | } |
| 154 | |
| 155 | pub fn new_call_expression( |
| 156 | callee: Option<Rc<Self>>, |
| 157 | arguments: Vec<Option<Rc<Self>>>, |
| 158 | ) -> Option<Rc<Self>> { |
| 159 | Some(Rc::new(Node::CallExpression { callee, arguments })) |
| 160 | } |
| 161 | |
| 162 | pub fn new_identifier(name: String) -> Option<Rc<Self>> { |
| 163 | Some(Rc::new(Node::Identifier(name))) |
nothing calls this directly
no outgoing calls
no test coverage detected