A call between functions. There should be at most one call object for every pair of functions.
| 161 | |
| 162 | |
| 163 | class Call(Object): |
| 164 | """A call between functions. |
| 165 | |
| 166 | There should be at most one call object for every pair of functions. |
| 167 | """ |
| 168 | |
| 169 | def __init__(self, callee_id): |
| 170 | Object.__init__(self) |
| 171 | self.callee_id = callee_id |
| 172 | self.ratio = None |
| 173 | self.weight = None |
| 174 | |
| 175 | |
| 176 | class Function(Object): |
no outgoing calls
no test coverage detected