Deserialized raw runtime information for a single function (based on RawEntry)
| 70 | |
| 71 | |
| 72 | class FunctionInfo(object): |
| 73 | """Deserialized raw runtime information for a single function (based on RawEntry)""" |
| 74 | |
| 75 | def __init__(self, path, line, func_name, type_comments, samples): |
| 76 | # type: (str, int, str, List[str], int) -> None |
| 77 | self.path = path |
| 78 | self.line = line |
| 79 | self.func_name = func_name |
| 80 | self.type_comments = type_comments |
| 81 | self.samples = samples |
| 82 | |
| 83 | |
| 84 | class ParseError(Exception): |