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
thrownewError(`Failed to load super class ${superClassName} of ${classReference.localName} in ${classReference.fileName}:\n${(<Error>error).message}`);
thrownewError(`Could not load ${considerInterfaces ? 'class or interface' : 'class'}${classReference.localName} from ${classReference.fileName}:\n${(<Error>error).message}`);
74
+
}
75
+
69
76
const{
70
77
exportedClasses,
71
78
exportedInterfaces,
@@ -188,6 +195,16 @@ export class ClassLoader {
188
195
returnthis.getClassElements(fileName,ast);
189
196
}
190
197
198
+
/**
199
+
* Convert the given import path to an absolute file path.
200
+
* @param currentFilePath Absolute path to a file in which the import path occurs.
201
+
* @param importPath Possibly relative path that is being imported.
0 commit comments