CodeQL library for C#
codeql/csharp-all 0.9.0 (changelog, source)
Search

Member predicate ConstructorInitializer::isThis

Holds if this initializer is a this initializer, for example this(0) in

class A
{
    A(int i) { }
    A() : this(0) { }
}
predicate isThis()