(valueobject, unused_dict)
| 250 | |
| 251 | |
| 252 | def summarize_stack_trace_debug_details(valueobject, unused_dict): |
| 253 | summary = get_string_value(valueobject.GetChildMemberWithName('summary')) |
| 254 | frametype = valueobject.GetChildMemberWithName('type').GetValue() |
| 255 | firstline, _, _ = summary.partition('\n') |
| 256 | _, _, result = firstline.partition(':') |
| 257 | return frametype + result |
| 258 | |
| 259 | |
| 260 | class IsolateChildrenProvider(DictProvider): |
nothing calls this directly
no test coverage detected
searching dependent graphs…