Exit_status.show
[hiphop-php.git] / hphp / hack / src / facts / facts_parser.mli
blob2b7fb9f2fac53e997561eea7ae60d73c008c2527
1 (*
2 * Copyright (c) 2018, Facebook, Inc.
3 * All rights reserved.
5 * This source code is licensed under the MIT license found in the
6 * LICENSE file in the "hack" directory of this source tree.
8 *)
9 val mangle_xhp_mode : bool ref
11 val flags_abstract : int
13 val flags_final : int
15 val extract_as_json_string :
16 php5_compat_mode:bool ->
17 hhvm_compat_mode:bool ->
18 disable_nontoplevel_declarations:bool ->
19 disable_legacy_soft_typehints:bool ->
20 allow_new_attribute_syntax:bool ->
21 disable_legacy_attribute_syntax:bool ->
22 enable_xhp_class_modifier:bool ->
23 disable_xhp_element_mangling:bool ->
24 filename:Relative_path.t ->
25 text:string ->
26 string option
28 val from_text :
29 php5_compat_mode:bool ->
30 hhvm_compat_mode:bool ->
31 disable_nontoplevel_declarations:bool ->
32 disable_legacy_soft_typehints:bool ->
33 allow_new_attribute_syntax:bool ->
34 disable_legacy_attribute_syntax:bool ->
35 enable_xhp_class_modifier:bool ->
36 disable_xhp_element_mangling:bool ->
37 filename:Relative_path.t ->
38 text:string ->
39 Facts.facts option