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

Member predicate Constructor::getInitializer

Gets the initializer of this constructor, if any. For example, the initializer of the constructor on line 2 is this(null) on line 3 in

class C {
  public C()
    : this(null) { ... }

  C(object o) { ... }
}
ConstructorInitializer getInitializer()