(error)
| 45 | |
| 46 | |
| 47 | def isSuccess(error): |
| 48 | # When evaluating a `void` expression, the returned value will indicate an |
| 49 | # error. This error is named: kNoResult. This error value does *not* mean |
| 50 | # there was a problem. This logic follows what the builtin `expression` |
| 51 | # command does. See: https://git.io/vwpjl (UserExpression.h) |
| 52 | kNoResult = 0x1001 |
| 53 | return error.success or error.value == kNoResult |
| 54 | |
| 55 | |
| 56 | def importModule(frame, module): |
no outgoing calls
no test coverage detected