-- A lexical scanner generated by aflex with text_io; use text_io; with ascan_dfa; use ascan_dfa; with ascan_io; use ascan_io; --# line 1 "ascan.l" -- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- This software was developed by John Self of the Arcadia project -- at the University of California, Irvine. -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- TITLE scanner specification file -- AUTHOR: John Self (UCI) -- DESCRIPTION regular expressions and actions matching tokens -- that aflex expects to find in its input. -- NOTES input to aflex (NOT alex.) It uses exclusive start conditions -- and case insensitive scanner generation available only in aflex -- (or flex if you use C.) -- generate scanner using the command 'aflex -is ascan.l' -- $Header: /dc/uc/self/arcadia/aflex/ada/src/RCS/ascan.l,v 1.19 1991/12/03 23:08:24 self Exp self $ --# line 44 "ascan.l" with misc_defs, misc, sym, parse_tokens, int_io; with tstring, ascan_dfa, ascan_io, external_file_manager; use misc_defs, parse_tokens, tstring; use ascan_dfa, ascan_io, external_file_manager; package scanner is call_yylex : boolean := false; function get_token return Token; end scanner;