| 1978 | } |
| 1979 | |
| 1980 | void Runtime::SetResolutionMethod(ArtMethod* method) { |
| 1981 | CHECK(method != nullptr); |
| 1982 | CHECK(method->IsRuntimeMethod()) << method; |
| 1983 | resolution_method_ = method; |
| 1984 | } |
| 1985 | |
| 1986 | void Runtime::SetImtUnimplementedMethod(ArtMethod* method) { |
| 1987 | CHECK(method != nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected