cprover
expr2jsil.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Jsil Language
4 
5 Author: Michael Tautschnig, tautschn@amazon.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_JSIL_EXPR2JSIL_H
13 #define CPROVER_JSIL_EXPR2JSIL_H
14 
15 #include <string>
16 
17 class exprt;
18 class namespacet;
19 class typet;
20 
21 std::string expr2jsil(const exprt &expr, const namespacet &ns);
22 std::string type2jsil(const typet &type, const namespacet &ns);
23 
24 #endif // CPROVER_JSIL_EXPR2JSIL_H
The type of an expression.
Definition: type.h:22
std::string expr2jsil(const exprt &expr, const namespacet &ns)
Definition: expr2jsil.cpp:24
TO_BE_DOCUMENTED.
Definition: namespace.h:74
std::string type2jsil(const typet &type, const namespacet &ns)
Definition: expr2jsil.cpp:31
Base class for all expressions.
Definition: expr.h:42