(self)
| 127 | |
| 128 | # Subclasses should not override anything below. |
| 129 | def EmitOne(self): |
| 130 | x_str = self.GenerateInput() |
| 131 | x_num = Parse(x_str) |
| 132 | result_num = self.GenerateResult(x_num) |
| 133 | result_str = Format(result_num) |
| 134 | return "{\n a: %s,\n r: %s\n}" % (x_str, result_str) |
| 135 | |
| 136 | def EmitTestCore(self): |
| 137 | return """\ |
nothing calls this directly
no test coverage detected