We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddd81f2 commit a70517dCopy full SHA for a70517d
scripts/AS3ExternsGenerator.hx
@@ -192,7 +192,7 @@ class AS3ExternsGenerator {
192
if (asReference && baseType.pack.length == 0 && ALWAYS_ALLOWED_REFERENCE_TYPES.indexOf(baseType.name) != -1) {
193
return false;
194
}
195
- if (baseType.isPrivate || (baseType.isExtern && !asReference) || isInHiddenPackage(baseType.pack)) {
+ if (baseType.isPrivate || (baseType.isExtern && !asReference) || isInHiddenPackage(baseType.pack) || baseType.meta.has(":noCompletion")) {
196
return true;
197
198
if (options != null) {
0 commit comments