mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 10:23:46 +00:00
compiler/hlds_out_inst_table.m:
compiler/hlds_out_type_table.m:
compiler/hlds_out_typeclass_table.m:
The three new modules.
compiler/hlds_out_module.m:
Delete the code moved to the new modules.
compiler/hlds_out.m:
Include the new modules in the hlds_out package.
compiler/notes/compiler_design.html:
Update the documentation of the hlds_out*.m modules.
29 lines
1.1 KiB
Mathematica
29 lines
1.1 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%---------------------------------------------------------------------------%
|
|
% Copyright (C) 1994-2009 The University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU General
|
|
% Public License - see the file COPYING in the Mercury distribution.
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% File: hlds_out.m.
|
|
% Main authors: conway, fjh.
|
|
%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module hlds.hlds_out.
|
|
:- interface.
|
|
|
|
:- include_module hlds_out_goal.
|
|
:- include_module hlds_out_inst_table.
|
|
:- include_module hlds_out_mode.
|
|
:- include_module hlds_out_module.
|
|
:- include_module hlds_out_pred.
|
|
:- include_module hlds_out_type_table.
|
|
:- include_module hlds_out_typeclass_table.
|
|
:- include_module hlds_out_util.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
:- end_module hlds.hlds_out.
|
|
%---------------------------------------------------------------------------%
|