(self, words)
| 59 | self.size_tf = -1 |
| 60 | |
| 61 | def AddLine(self, words): |
| 62 | assert self.index == words[2], "wrong function" |
| 63 | if words[4] == "TurboFan,": |
| 64 | self.AddTFLine(words) |
| 65 | elif words[4] == "Liftoff,": |
| 66 | self.AddLiftoffLine(words) |
| 67 | else: |
| 68 | raise Exception("unknown compiler: %s" % words[4]) |
| 69 | |
| 70 | def AddTFLine(self, words): |
| 71 | assert not self.has_tf, "duplicate TF line for %s" % self.index |
no test coverage detected