Mopsa_universal_parser.U_astSourceDefinition of the abstract syntax trees output by the parser.
and expr = | AST_unary of unary_op * expr ext| AST_len of expr ext| AST_binary of binary_op * expr ext * expr ext| AST_identifier of var ext| AST_int_const of string ext| AST_unit_const| AST_bool_const of bool ext| AST_real_const of string ext| AST_string_const of string ext| AST_char_const of char ext| AST_array_const of expr ext array ext| AST_rand of string ext * string ext| AST_randf of string ext * string ext| AST_rand_string| AST_array_access of expr ext * expr ext| AST_fun_call of var ext * expr ext listtype stat = | AST_block of stat ext list| AST_assign of expr ext * expr ext| AST_if of expr ext * stat ext * stat ext option| AST_while of expr ext * stat ext| AST_for of var ext * expr ext * expr ext * stat ext| AST_return of expr ext option| AST_break| AST_continue| AST_assert of expr ext| AST_assume of expr ext| AST_expr of expr ext| AST_print