@colyseus/schema 3.0.0-alpha.45 → 3.0.0-alpha.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/esm/index.mjs +1 -1
- package/build/esm/index.mjs.map +1 -1
- package/build/umd/index.js +1 -1
- package/lib/codegen/languages/haxe.js +4 -2
- package/lib/codegen/languages/haxe.js.map +1 -1
- package/lib/codegen/languages/lua.js +1 -1
- package/lib/codegen/languages/lua.js.map +1 -1
- package/lib/types/TypeContext.js +1 -1
- package/lib/types/TypeContext.js.map +1 -1
- package/package.json +13 -13
- package/src/codegen/languages/haxe.ts +5 -2
- package/src/codegen/languages/lua.ts +1 -1
- package/src/types/TypeContext.ts +1 -1
package/build/esm/index.mjs
CHANGED
|
@@ -657,7 +657,7 @@ class TypeContext {
|
|
|
657
657
|
}
|
|
658
658
|
// add classes inherited from this base class
|
|
659
659
|
TypeContext.inheritedTypes.get(klass)?.forEach((child) => {
|
|
660
|
-
this.discoverTypes(child,
|
|
660
|
+
this.discoverTypes(child, parentType, parentIndex, parentHasViewTag);
|
|
661
661
|
});
|
|
662
662
|
// add parent classes
|
|
663
663
|
let parent = klass;
|