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) { ... }
}