mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-24 05:43:53 +00:00
Delete now-obsolete code to search for a module in files matching
partially qualified versions of the module name.
compiler/find_module.m:
As above.
compiler/read_modules.m:
compiler/write_deps_file.m:
Conform to changes.
tests/invalid/bad_module_name.err_exp
tests/invalid/bad_module_name.m
tests/invalid/bad_module_name_sub.m -> tests/invalid/bad_module_name.sub.m:
Rename sub-module and its source file so that the source file will
be found.
11 lines
139 B
Mathematica
11 lines
139 B
Mathematica
% vim: ts=4 sw=4 et ft=mercury
|
|
|
|
:- module bad_module_name.
|
|
:- interface.
|
|
|
|
:- type t
|
|
---> f1
|
|
; f2.
|
|
|
|
:- include_module sub.
|