| 60 | } |
| 61 | |
| 62 | bool IsFiltered(bool defaultValue) |
| 63 | { |
| 64 | switch (mFilterKind) |
| 65 | { |
| 66 | case BfStepFilterKind_Default: |
| 67 | return defaultValue; |
| 68 | case BfStepFilterKind_Filtered: |
| 69 | return true; |
| 70 | default: |
| 71 | return false; |
| 72 | } |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | class DebugManager |
no outgoing calls
no test coverage detected