home *** CD-ROM | disk | FTP | other *** search
- --***************************************************************--
- -- --
- -- TITLE: AN ADA SOFTWARE METRIC --
- -- --
- -- MODULE NAME: PACKAGE SPECIFICATION PARSER_0 --
- -- FILE NAME: PARSER_0.ADS --
- -- --
- -- LAST MODIFIED: 02 MAR 90 --
- -- --
- -- DESCRIPTION: This package contains one function that makes --
- -- up the highest level productions for our top-down, --
- -- recursive descent parser. --
- -- --
- -- COPYRIGHT: The Ada source code in this file is Copyright --
- -- 1990 by Source Translation & Optimization. There --
- -- are no restrictions to the use of this source --
- -- code in any product or system that is released --
- -- in non-source code form. Resale of this source --
- -- code, without permission of STO, is a violation --
- -- of our Copyright. --
- -- --
- -- --
- -- HELP: For more information contact: Gregory Aharonian --
- -- Source Translation & Optimization, P.O. Box 404 --
- -- Belmont, MA, 02178-0404 617-489-3727 --
- --***************************************************************--
-
- package PARSER_0 is
-
- function COMPILATION return boolean;
-
- --
- -- The following procedures are declared locally in the package body
- --
- -- function COMPILATION_UNIT return boolean;
- -- function CONTEXT_CLAUSE return boolean;
- -- function BASIC_UNIT return boolean;
- -- function LIBRARY_UNIT return boolean;
- -- function SUBUNIT return boolean;
-
- end PARSER_0;
-