cprover
json_expr.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Expressions in JSON
4 
5 Author: Peter Schrammel
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_UTIL_JSON_EXPR_H
13 #define CPROVER_UTIL_JSON_EXPR_H
14 
15 #include "json.h"
16 #include "irep.h"
17 
18 class source_locationt;
19 class typet;
20 class exprt;
21 class namespacet;
22 
24  const exprt &,
25  const namespacet &,
26  const irep_idt &mode);
27 
29  const typet &,
30  const namespacet &,
31  const irep_idt &mode);
32 
34 
35 #endif // CPROVER_UTIL_JSON_EXPR_H
The type of an expression.
Definition: type.h:22
TO_BE_DOCUMENTED.
Definition: namespace.h:74
json_objectt json(const exprt &, const namespacet &, const irep_idt &mode)
Output a CBMC expression in json.
Definition: json_expr.cpp:224
dstringt has one field, an unsigned integer no which is an index into a static table of strings...
Definition: dstring.h:33
Base class for all expressions.
Definition: expr.h:42