Stack push
(&mut self, stmt: T)
| 40 | |
| 41 | /// Stack push |
| 42 | pub fn push(&mut self, stmt: T) { |
| 43 | self.stmts.push_back(stmt); |
| 44 | } |
| 45 | |
| 46 | /// Save nodes that enable to Pre-order traversal of AST. |
| 47 | pub fn push_childs(&mut self, childs: Vec<T>) { |
no outgoing calls