Function to indent the Miden assembly by four spaces. Ex. if.true push.0
(&mut self)
| 102 | // if.true |
| 103 | // push.0 |
| 104 | fn indent(&mut self) { |
| 105 | if self.options.auto_indent || self.indentation == 0 { |
| 106 | self.indentation += 4; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | //Function to decrease the indent in the Miden assembly by four spaces |
| 111 | //Ex. |
no outgoing calls
no test coverage detected