Returns whether the Fire execution encountered a Fire usage error.
(self)
| 78 | return self.elements[0] # The initial element is always healthy. |
| 79 | |
| 80 | def HasError(self): |
| 81 | """Returns whether the Fire execution encountered a Fire usage error.""" |
| 82 | return self.elements[-1].HasError() |
| 83 | |
| 84 | def AddAccessedProperty(self, component, target, args, filename, lineno): |
| 85 | element = FireTraceElement( |
no outgoing calls