(node)
| 72 | |
| 73 | |
| 74 | def is_static_member_definition_hack(node): |
| 75 | last_colons = False |
| 76 | for t in node.get_tokens(): |
| 77 | t = t.spelling |
| 78 | if t == "::": |
| 79 | last_colons = True |
| 80 | elif last_colons: |
| 81 | if t.startswith("ms_"): |
| 82 | return True |
| 83 | last_colons = False |
| 84 | if t == "=": |
| 85 | return False |
| 86 | return False |
| 87 | |
| 88 | |
| 89 | def is_const(typ): |
no outgoing calls
no test coverage detected