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
Copy file name to clipboardExpand all lines: docs/language/ql-handbook/modules.rst
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,7 @@ into the :ref:`namespace <namespaces>` of the current module.
160
160
Import statements
161
161
=================
162
162
163
-
Import statements are used for importing modules and are of the form::
163
+
Import statements are used for importing modules. They are of the form::
164
164
165
165
import <module_expression1> as <name>
166
166
import <module_expression2>
@@ -175,3 +175,6 @@ for example ``import javascript as js``.
175
175
176
176
The ``<module_expression>`` itself can be a module name, a selection, or a qualified
177
177
reference. See :ref:`name-resolution` for more details.
178
+
179
+
For information about how import statements are looked up, see `Module resolution <https://help.semmle.com/QL/ql-spec/language.html#module-resolution>`__
0 commit comments