(&self)
| 213 | } |
| 214 | |
| 215 | pub fn new_inner_scope(&self) -> Context<'_> { |
| 216 | Context::Child { |
| 217 | parent: self, |
| 218 | variables: Default::default(), |
| 219 | resolver: None, |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /// Constructs a new empty context with no variables or functions. |
| 224 | /// |
no outgoing calls
no test coverage detected