| 2127 | } |
| 2128 | |
| 2129 | bool HasThis() |
| 2130 | { |
| 2131 | return !mIsStaticMethod; |
| 2132 | |
| 2133 | /*bool matchLLVM = false; |
| 2134 | |
| 2135 | // This matches the LLVM CV emitter |
| 2136 | if (matchLLVM) |
| 2137 | { |
| 2138 | return (BeValueDynCast<BeDbgType>(mScope) != NULL) && |
| 2139 | (mType->mParams.size() > 0); |
| 2140 | } |
| 2141 | else |
| 2142 | { |
| 2143 | return ((mVariables.size() > 0) && (mVariables[0]->mName == "this")); |
| 2144 | }*/ |
| 2145 | } |
| 2146 | |
| 2147 | virtual void HashContent(BeHashContext& hashCtx) override; |
| 2148 | }; |
no outgoing calls
no test coverage detected