mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-06 04:36:02 +02:00
pas2js: fixed init external class RTTI
This commit is contained in:
parent
030c3b6652
commit
a70d33ff00
3
utils/pas2js/dist/rtl.js
vendored
3
utils/pas2js/dist/rtl.js
vendored
@ -1449,7 +1449,7 @@ var rtl = {
|
|||||||
$Pointer: function(name,o){ return this.$inherited(name,rtl.tTypeInfoPointer,o); },
|
$Pointer: function(name,o){ return this.$inherited(name,rtl.tTypeInfoPointer,o); },
|
||||||
$Interface: function(name,o){ return this.$Scope(name,rtl.tTypeInfoInterface,o); },
|
$Interface: function(name,o){ return this.$Scope(name,rtl.tTypeInfoInterface,o); },
|
||||||
$Helper: function(name,o){ return this.$Scope(name,rtl.tTypeInfoHelper,o); },
|
$Helper: function(name,o){ return this.$Scope(name,rtl.tTypeInfoHelper,o); },
|
||||||
$ExtClass: function(name,o){ return this.$inherited(name,rtl.tTypeInfoExtClass,o); }
|
$ExtClass: function(name,o){ return this.$Scope(name,rtl.tTypeInfoExtClass,o); }
|
||||||
},
|
},
|
||||||
|
|
||||||
newTIParam: function(param){
|
newTIParam: function(param){
|
||||||
@ -1497,3 +1497,4 @@ var rtl = {
|
|||||||
return Object.keys(rtl.$res);
|
return Object.keys(rtl.$res);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user