Missing super() in subclass constructor
Subclass constructors must call super() before using this.
#Metadata
#Why it matters
Derived classes must initialize the base class; omitting super() is a runtime error when this is accessed.
#Remediation
Add `super(...)` as the first statement in the constructor (before using this).
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/typescript/ts.correctness.missing-super-call.rule.yaml.