Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Bugfix release: false positives for UnusedUseStatement linter

Compare
Choose a tag to compare
@fredemmott fredemmott released this 06 Aug 23:12

This release fixes a bug in the UnusedUseStatement linter for use type and use statements:

<?hh // strict

// earlier versions of HHAST would incorrectly report `GenericParent` as unused
use type Foo\GenericParent;

class Foo<T> extends GenericParent<T> {
}

This release also includes more complete CSS for the hhast-inspect developer tool.