Files
codeql/csharp/ql/test/library-tests/frameworks/system/Equals/Equals.ql
2018-08-02 17:53:23 +01:00

8 lines
258 B
Plaintext

import csharp
import semmle.code.csharp.frameworks.System
from ValueOrRefType t, Method m, boolean b
where t.fromSource() and m = getInvokedEqualsMethod(t)
and if implementsEquals(t) then b = true else b = false
select t, m.getQualifiedNameWithTypes(), b