Files
mercury/compiler/hlds_out.m
Zoltan Somogyi 87461be566 Carve three new modules out of hlds_out_module.m.
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.
2021-08-08 08:04:05 +10:00

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.
%---------------------------------------------------------------------------%