You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We check if the file even exist, the KtClass can come from a library or module.
67
-
if (FileAccess::exists(script_path)) {
67
+
// We also verify if that path is not already in cache, in case several registered classes are in the same file. We only create a script for the first one.
68
+
if (FileAccess::exists(script_path) && !filepath_to_name_map.has(script_path)) {
0 commit comments