Fix for locating the exception type when compiling with the units with namespace.

This commit is contained in:
Henrique Gottardi Werlang 2024-06-05 19:22:15 -03:00
parent dbc3d6b98f
commit 105fae6d48

View File

@ -527,6 +527,7 @@ var rtl = {
if (t==null){
var mod = pas.SysUtils;
if (!mod) mod = pas.sysutils;
if (!mod) mod = pas["System.SysUtils"];
if (mod){
t = mod[typename];
if (!t) t = mod[typename.toLowerCase()];