Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / mlyacc-lib / mlyacc-lib.mlb
1 (* Copyright (C) 2004-2005 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 *
4 * MLton is released under a BSD-style license.
5 * See the file MLton-LICENSE for details.
6 *)
7
8 ann
9 "nonexhaustiveBind warn" "nonexhaustiveMatch warn"
10 "redundantBind warn" "redundantMatch warn"
11 "sequenceNonUnit warn"
12 "warnUnused false" "forceUsed"
13 in
14 local
15 $(SML_LIB)/basis/basis.mlb
16 base.sig
17 join.sml
18 lrtable.sml
19 stream.sml
20 parser2.sml (* error correcting version *)
21 in
22 signature STREAM
23 signature LR_TABLE
24 signature TOKEN
25 signature LR_PARSER
26 signature LEXER
27 signature ARG_LEXER
28 signature PARSER_DATA
29 signature PARSER
30 signature ARG_PARSER
31 functor Join
32 functor JoinWithArg
33 structure LrTable
34 structure Stream
35 structure LrParser
36 end
37 end