(object: { name: string })
| 39 | } |
| 40 | |
| 41 | static registerExternal(object: { name: string }) { |
| 42 | CodegenRegistry.checkExists(object.name); |
| 43 | this.external.set(object.name, object); |
| 44 | } |
| 45 | |
| 46 | static newGeneratorByTypeInfo(typeInfo: TypeInfo, builder: CodecBuilder, scope: Scope) { |
| 47 | const constructor = CodegenRegistry.get(typeInfo.typeId); |
no test coverage detected