(self)
| 158 | |
| 159 | # Subclasses should not override anything below. |
| 160 | def EmitOne(self): |
| 161 | left_str, right_str = self.GenerateInputs() |
| 162 | left_num = Parse(left_str) |
| 163 | right_num = Parse(right_str) |
| 164 | result_num = self.GenerateResult(left_num, right_num) |
| 165 | result_str = Format(result_num) |
| 166 | return ("{\n a: %s,\n b: %s,\n r: %s\n}" % |
| 167 | (left_str, right_str, result_str)) |
| 168 | |
| 169 | def EmitTestCore(self): |
| 170 | return """\ |
nothing calls this directly
no test coverage detected