| 58 | } |
| 59 | |
| 60 | bool update(Token* tok) { |
| 61 | Analyzer::Action action = analyzer->analyze(tok, Analyzer::Direction::Reverse); |
| 62 | if (action.isInconclusive() && !analyzer->lowerToInconclusive()) |
| 63 | return false; |
| 64 | if (action.isInvalid()) |
| 65 | return false; |
| 66 | if (!action.isNone()) |
| 67 | analyzer->update(tok, action, Analyzer::Direction::Reverse); |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | static Token* getParentFunction(Token* tok) |
| 72 | { |
nothing calls this directly
no test coverage detected