Add node to stash
(self, node, type)
| 69 | return None, index + 1 |
| 70 | |
| 71 | def __stashNode(self, node, type): |
| 72 | """ Add node to stash """ |
| 73 | placeholder, id = self.__makePlaceholder(type) |
| 74 | self.stashed_nodes[id] = node |
| 75 | return placeholder |
| 76 | |
| 77 | def __handleInline(self, data, patternIndex=0): |
| 78 | """ |
no test coverage detected