Skip to content

Commit

Permalink
fix: #15
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyElaina committed Nov 13, 2022
1 parent 4ac480c commit 30fb88b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ class ManifestReaderBuilder {
);
final cls = e as ClassElement;
require(
!cls.isEnum && !cls.isMixin && !cls.isMixinApplication,
!(e is EnumElement) && !(e is MixinElement) && !cls.isMixinApplication,
'element should be a Class',
);
require(
Expand Down

0 comments on commit 30fb88b

Please sign in to comment.