-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathtoplevel_init
More file actions
44 lines (40 loc) · 858 Bytes
/
toplevel_init
File metadata and controls
44 lines (40 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(* to be used with infertop, infer's custom toplevel *)
(* load dependencies *)
#use "topfind";;
#thread;;
#require "ANSITerminal";;
#require "atdgen";;
#require "bheap";;
#require "cmdliner";;
#require "core.top";;
#require "ctypes";;
#require "ctypes.stubs";;
#require "ocamlgraph";;
#require "ppx_compare";;
#require "ppx_fields_conv";;
#require "re";;
#require "sawja";;
#require "sqlite3";;
#require "xmlm";;
open IStdlib;;
open ATDGenerated;;
open IBase;;
open IR;;
open Absint;;
open BO;;
open Pulselib;;
open Checkers;;
open Costlib;;
open Topllib;;
open Concurrency;;
open Labs;;
open OpenSource;;
open Backend;;
open JavaFrontend;;
open ClangFrontend;;
open Integration;;
(* Most of infer uses this, useful for copy/pasting. Can be (partially) countered by typing `open
Caml.Pervasives`. *)
open IStd;;
module L = Logging;;
module F = Format;;