Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 294 Bytes

no-duplicate-super.md

File metadata and controls

13 lines (7 loc) · 294 Bytes

Pattern: Multiple calls to super()

Issue: -

Description

Warns if super() appears twice in a constructor.

Rationale: The second call to super() will fail at runtime.

Further Reading