| 21 | |
| 22 | #[derive(Clone, Debug)] |
| 23 | pub struct Expression { |
| 24 | function: Function, |
| 25 | accessors: Vec<Accessor>, |
| 26 | } |
| 27 | |
| 28 | fn node_to_string(node: &Node, statement_bytes: &[u8]) -> Result<String, DscError> { |
| 29 | let text = node.utf8_text(statement_bytes)?; |