* Patch from Henrique Werlan, correctly fetch RTTI info for external classes (pas2js issue 38943)

This commit is contained in:
Michaël Van Canneyt 2021-12-21 15:11:17 +01:00
parent a16449c54e
commit e6fe075a42

View File

@ -1449,7 +1449,7 @@ var rtl = {
$Pointer: function(name,o){ return this.$inherited(name,rtl.tTypeInfoPointer,o); },
$Interface: function(name,o){ return this.$Scope(name,rtl.tTypeInfoInterface,o); },
$Helper: function(name,o){ return this.$Scope(name,rtl.tTypeInfoHelper,o); },
$ExtClass: function(name,o){ return this.$Scope(name,rtl.tTypeInfoExtClass,o); }
$ExtClass: function(name,o){ return this.$inherited(name,rtl.tTypeInfoExtClass,o); }
},
newTIParam: function(param){
@ -1497,4 +1497,3 @@ var rtl = {
return Object.keys(rtl.$res);
}
}