(self, space, l)
| 43 | return space + l.current().source_(True) + "\n"; |
| 44 | |
| 45 | def lnodes_str(self, space, l): |
| 46 | res = "" |
| 47 | while not l.at_end(): |
| 48 | res += self.lnode_str(space, l) |
| 49 | if l.current().has_children(): |
| 50 | l.down_first_child() |
| 51 | res += self.lnodes_str(" " + space, l) |
| 52 | l.up() |
| 53 | l.next_sibling(1) |
| 54 | return res |
| 55 | |
| 56 | def lnodes_str2(self, v): |
| 57 | res = [] |