(self, expectedNumVals)
| 764 | return val |
| 765 | |
| 766 | def popAllValues(self, expectedNumVals): |
| 767 | values = [ |
| 768 | self.popValue() for _ in range(self.valueStack.currentNumValues) |
| 769 | ] |
| 770 | if len(values) != expectedNumVals: |
| 771 | self.emitFatalError( |
| 772 | "processing error - expression did not produce a valid " |
| 773 | "value in this context", self.currentNode) |
| 774 | return values |
| 775 | |
| 776 | def pushForBodyStack(self, bodyBlockArgs): |
| 777 | """Indicate that we are entering a for loop body block.""" |
no test coverage detected