We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52e615 commit 7973241Copy full SHA for 7973241
import.pl
@@ -13,4 +13,7 @@
13
14
% import_path extracts 'Name' tokens for each import.
15
% It returns a Path as list of names.
16
-import_path(Path) :- !, import(Import), extract_name(Import, Path).
+import_path(Path) :- import(Import), extract_name(Import, Path).
17
+import_path(Path) :- runtime_import(Import), extract_name(Import, Path).
18
+import_path(Path) :- runtime_reimport(Import), extract_name(Import, Path).
19
+import_path(Path) :- inline_import(Import), extract_name(Import, Path).
0 commit comments