We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6261f0b commit a0ca30fCopy full SHA for a0ca30f
src/LuaFileParser.php
@@ -114,11 +114,11 @@ private function parseMixinRegex(
114
$funcInfo['classAnnotation'] .= ' : ' . $match['extends'][0];
115
}
116
if (
117
- !str_contains($match['name'][0], 'Mixin')
118
- && (
119
- !str_contains($match['extends'][0], ',')
120
- || str_contains($match['name'][0], '.')
+ (
+ !str_contains($match['name'][0], 'Mixin')
+ && !str_contains($match['extends'][0], ',')
121
)
+ || str_contains($match['name'][0], '.')
122
) {
123
// skip global objects created from single mixins, and skip table properties
124
continue;
0 commit comments