@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/cjs/index.js
CHANGED
|
@@ -659,7 +659,7 @@ class TypeContext {
|
|
|
659
659
|
}
|
|
660
660
|
// add classes inherited from this base class
|
|
661
661
|
TypeContext.inheritedTypes.get(klass)?.forEach((child) => {
|
|
662
|
-
this.discoverTypes(child,
|
|
662
|
+
this.discoverTypes(child, parentType, parentIndex, parentHasViewTag);
|
|
663
663
|
});
|
|
664
664
|
// add parent classes
|
|
665
665
|
let parent = klass;
|