Import Debian changes 20180207-1
[hcoop/debian/mlton.git] / mlton / xml / scc-funs.sig
1 (* Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 * Copyright (C) 1997-2000 NEC Research Institute.
4 *
5 * MLton is released under a BSD-style license.
6 * See the file MLton-LICENSE for details.
7 *)
8
9 (* Compute strongly connected components on fun decs to make them
10 * as small as possible.
11 *)
12
13 signature SCC_FUNS_STRUCTS =
14 sig
15 include TYPE_CHECK
16 end
17
18 signature SCC_FUNS =
19 sig
20 include SCC_FUNS_STRUCTS
21
22 val sccFuns: Program.t -> Program.t
23 end