Skip to content

Commit a70517d

Browse files
committed
AS3ExternsGenerator: skip :noCompletion classes
1 parent ddd81f2 commit a70517d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/AS3ExternsGenerator.hx

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class AS3ExternsGenerator {
192192
if (asReference && baseType.pack.length == 0 && ALWAYS_ALLOWED_REFERENCE_TYPES.indexOf(baseType.name) != -1) {
193193
return false;
194194
}
195-
if (baseType.isPrivate || (baseType.isExtern && !asReference) || isInHiddenPackage(baseType.pack)) {
195+
if (baseType.isPrivate || (baseType.isExtern && !asReference) || isInHiddenPackage(baseType.pack) || baseType.meta.has(":noCompletion")) {
196196
return true;
197197
}
198198
if (options != null) {

0 commit comments

Comments
 (0)