forked from HaxeFoundation/haxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.ml
executable file
·1134 lines (1079 loc) · 27.7 KB
/
ast.ml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(*
* Haxe Compiler
* Copyright (c)2005 Nicolas Cannasse
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
type pos = {
pfile : string;
pmin : int;
pmax : int;
}
module Meta = struct
type strict_meta =
| Abstract
| Access
| Alias
| Allow
| Annotation
| ArrayAccess
| AutoBuild
| BaseInterface
| Bind
| Bitmap
| Build
| BuildXml
| Class
| ClassCode
| CompilerGenerated
| CoreApi
| CoreType
| CppFileCode
| CppNamespaceCode
| Debug
| Decl
| DefineFeature
| DefParam
| Depend
| Deprecated
| DynamicObject
| Enum
| Expose
| Extern
| FakeEnum
| File
| Final
| Font
| From
| FunctionCode
| FunctionTailCode
| Generic
| Getter
| Hack
| HaxeGeneric
| HeaderClassCode
| HeaderCode
| HeaderNamespaceCode
| HxGen
| IfFeature
| Impl
| Include
| InitPackage
| Internal
| IsVar
| JavaNative
| Keep
| KeepInit
| KeepSub
| Meta
| Macro
| MaybeUsed
| Native
| NativeGen
| NativeGeneric
| NoCompletion
| NoDebug
| NoDoc
| NoStack
| NotNull
| NoUsing
| Ns
| Optional
| Overload
| Public
| PrivateAccess
| Protected
| ReadOnly
| RealPath
| Remove
| Require
| ReplaceReflection
| RttiInfos
| Runtime
| RuntimeValue
| Setter
| SkipCtor
| SkipReflection
| Sound
| Struct
| SuppressWarnings
| Synchronized
| Throws
| To
| Transient
| ValueUsed
| VarArgs
| Volatile
| UnifyMinDynamic
| Unreflective
| Unsafe
| Used
| Dollar of string
| Custom of string
let to_string = function
| Abstract -> ":abstract"
| Access -> ":access"
| Alias -> ":alias"
| Allow -> ":allow"
| Annotation -> ":annotation"
| ArrayAccess -> ":arrayAccess"
| AutoBuild -> ":autoBuild"
| BaseInterface -> ":baseInterface"
| Bind -> ":bind"
| Bitmap -> ":bitmap"
| Build -> ":build"
| BuildXml -> "buildXml"
| Class -> ":class"
| ClassCode -> ":classCode"
| CompilerGenerated -> ":compilerGenerated"
| CoreApi -> ":coreApi"
| CoreType -> ":coreType"
| CppFileCode -> ":cppFileCode"
| CppNamespaceCode -> ":cppNamespaceCode"
| Debug -> ":debug"
| Decl -> ":decl"
| DefineFeature -> ":defineFeature"
| DefParam -> ":defParam"
| Depend -> ":depend"
| Deprecated -> ":deprecated"
| DynamicObject -> ":dynamicObject"
| Enum -> ":enum"
| Expose -> ":expose"
| Extern -> ":extern"
| FakeEnum -> ":fakeEnum"
| File -> ":file"
| Final -> ":final"
| Font -> ":font"
| From -> ":from"
| FunctionCode -> ":functionCode"
| FunctionTailCode -> ":functionTailCode"
| Generic -> ":generic"
| Getter -> ":getter"
| Hack -> ":hack"
| HaxeGeneric -> ":haxeGeneric"
| HeaderClassCode -> ":headerClassCode"
| HeaderCode -> ":headerCode"
| HeaderNamespaceCode -> ":headerNamespaceCode"
| HxGen -> ":hxGen"
| IfFeature -> ":ifFeature"
| Impl -> ":impl"
| Include -> ":include"
| InitPackage -> ":initPackage"
| Internal -> ":internal"
| IsVar -> ":isVar"
| JavaNative -> ":javaNative"
| Keep -> ":keep"
| KeepInit -> ":keepInit"
| KeepSub -> ":keepSub"
| Meta -> ":meta"
| Macro -> ":macro"
| MaybeUsed -> ":maybeUsed"
| Native -> ":native"
| NativeGen -> ":nativeGen"
| NativeGeneric -> ":nativeGeneric"
| NoCompletion -> ":noCompletion"
| NoDebug -> ":noDebug"
| NoDoc -> ":noDoc"
| NoStack -> ":noStack"
| NotNull -> ":notNull"
| NoUsing -> ":noUsing"
| Ns -> ":ns"
| Optional -> ":optional"
| Overload -> ":overload"
| Public -> ":public"
| PrivateAccess -> ":privateAccess"
| Protected -> ":protected"
| ReadOnly -> ":readOnly"
| RealPath -> ":realPath"
| Remove -> ":remove"
| Require -> ":require"
| ReplaceReflection -> ":replaceReflection"
| RttiInfos -> ":rttiInfos"
| Runtime -> ":runtime"
| RuntimeValue -> ":runtimeValue"
| Setter -> ":setter"
| SkipCtor -> ":skipCtor"
| SkipReflection -> ":skipReflection"
| Sound -> ":sound"
| Struct -> ":struct"
| SuppressWarnings -> ":suppressWarnings"
| Synchronized -> ":synchronized"
| Throws -> ":throws"
| To -> ":to"
| Transient -> ":transient"
| ValueUsed -> ":valueUsed"
| VarArgs -> ":varArgs"
| Volatile -> ":volatile"
| UnifyMinDynamic -> ":unifyMinDynamic"
| Unreflective -> ":unreflective"
| Unsafe -> ":unsafe"
| Used -> ":used"
| Dollar s -> "$" ^ s
| Custom s -> s
let parse = function
| "abstract" -> Abstract
| "access" -> Access
| "alias" -> Alias
| "allow" -> Allow
| "annotation" -> Annotation
| "arrayAccess" -> ArrayAccess
| "autoBuild" -> AutoBuild
| "bind" -> Bind
| "bitmap" -> Bitmap
| "build" -> Build
| "buildXml" -> BuildXml
| "classCode" -> ClassCode (* was classContents *)
| "coreApi" -> CoreApi
| "coreType" -> CoreType
| "cppFileCode" -> CppFileCode
| "cppNamespaceCode" -> CppNamespaceCode
| "debug" -> Debug
| "decl" -> Decl
| "defineFeature" -> DefineFeature
| "defParam" -> DefParam (* was defparam *)
| "depend" -> Depend
| "deprecated" -> Deprecated
| "expose" -> Expose
| "extern" -> Extern
| "fakeEnum" -> FakeEnum
| "file" -> File
| "final" -> Final
| "font" -> Font
| "from" -> From
| "functionCode" -> FunctionCode
| "functionTailCode" -> FunctionTailCode
| "generic" -> Generic
| "getter" -> Getter
| "hack" -> Hack
| "headerClassCode" -> HeaderClassCode
| "headerCode" -> HeaderCode
| "headerNamespaceCode" -> HeaderNamespaceCode
| "hxGen" -> HxGen (* was hxgen *)
| "ifFeature" -> IfFeature
| "include" -> Include
| "initPackage" -> InitPackage
| "internal" -> Internal
| "isVar" -> IsVar
| "keep" -> Keep
| "keepInit" -> KeepInit
| "keepSub" -> KeepSub
| "macro" -> Macro
| "native" -> Native
| "nativeGen" -> NativeGen (* was nativegen *)
| "noCompletion" -> NoCompletion
| "noDebug" -> NoDebug
| "noDoc" -> NoDoc
| "noStack" -> NoStack
| "notNull" -> NotNull
| "noUsing" -> NoUsing
| "ns" -> Ns
| "optional" -> Optional
| "overload" -> Overload
| "protected" -> Protected
| "public" -> Public
| "readOnly" -> ReadOnly (* was readonly *)
| "remove" -> Remove
| "require" -> Require
| "replaceReflection" -> ReplaceReflection
| "rttiInfos" -> RttiInfos
| "runtime" -> Runtime
| "runtimeValue" -> RuntimeValue
| "setter" -> Setter
| "skipCtor" -> SkipCtor (* was skip_ctor *)
| "skipReflection" -> SkipReflection
| "sound" -> Sound
| "struct" -> Struct
| "suppressWarnings" -> SuppressWarnings
| "synchronized" -> Synchronized
| "throws" -> Throws
| "to" -> To
| "transient" -> Transient
| "varArgs" -> VarArgs
| "volatile" -> Volatile
| "unifyMinDynamic" -> UnifyMinDynamic
| "unreflective" -> Unreflective
| "unsafe" -> Unsafe
| s -> Custom s
let from_string s =
if s = "" then Custom "" else match s.[0] with
| ':' -> parse (String.sub s 1 (String.length s - 1))
| '$' -> Dollar (String.sub s 1 (String.length s - 1))
| _ -> Custom s
(* removed
:functionBody -> :functionCode
*)
let has m ml = List.exists (fun (m2,_,_) -> m = m2) ml
let get m ml = List.find (fun (m2,_,_) -> m = m2) ml
end
type keyword =
| Function
| Class
| Var
| If
| Else
| While
| Do
| For
| Break
| Continue
| Return
| Extends
| Implements
| Import
| Switch
| Case
| Default
| Static
| Public
| Private
| Try
| Catch
| New
| This
| Throw
| Extern
| Enum
| In
| Interface
| Untyped
| Cast
| Override
| Typedef
| Dynamic
| Package
| Inline
| Using
| Null
| True
| False
| Abstract
| Macro
type binop =
| OpAdd
| OpMult
| OpDiv
| OpSub
| OpAssign
| OpEq
| OpNotEq
| OpGt
| OpGte
| OpLt
| OpLte
| OpAnd
| OpOr
| OpXor
| OpBoolAnd
| OpBoolOr
| OpShl
| OpShr
| OpUShr
| OpMod
| OpAssignOp of binop
| OpInterval
type unop =
| Increment
| Decrement
| Not
| Neg
| NegBits
type constant =
| Int of string
| Float of string
| String of string
| Ident of string
| Regexp of string * string
type token =
| Eof
| Const of constant
| Kwd of keyword
| Comment of string
| CommentLine of string
| Binop of binop
| Unop of unop
| Semicolon
| Comma
| BrOpen
| BrClose
| BkOpen
| BkClose
| POpen
| PClose
| Dot
| DblDot
| Arrow
| IntInterval of string
| Sharp of string
| Question
| At
| Dollar of string
type unop_flag =
| Prefix
| Postfix
type while_flag =
| NormalWhile
| DoWhile
type type_path = {
tpackage : string list;
tname : string;
tparams : type_param_or_const list;
tsub : string option;
}
and type_param_or_const =
| TPType of complex_type
| TPExpr of expr
and complex_type =
| CTPath of type_path
| CTFunction of complex_type list * complex_type
| CTAnonymous of class_field list
| CTParent of complex_type
| CTExtend of type_path * class_field list
| CTOptional of complex_type
and func = {
f_params : type_param list;
f_args : (string * bool * complex_type option * expr option) list;
f_type : complex_type option;
f_expr : expr option;
}
and expr_def =
| EConst of constant
| EArray of expr * expr
| EBinop of binop * expr * expr
| EField of expr * string
| EParenthesis of expr
| EObjectDecl of (string * expr) list
| EArrayDecl of expr list
| ECall of expr * expr list
| ENew of type_path * expr list
| EUnop of unop * unop_flag * expr
| EVars of (string * complex_type option * expr option) list
| EFunction of string option * func
| EBlock of expr list
| EFor of expr * expr
| EIn of expr * expr
| EIf of expr * expr * expr option
| EWhile of expr * expr * while_flag
| ESwitch of expr * (expr list * expr option * expr option) list * expr option option
| ETry of expr * (string * complex_type * expr) list
| EReturn of expr option
| EBreak
| EContinue
| EUntyped of expr
| EThrow of expr
| ECast of expr * complex_type option
| EDisplay of expr * bool
| EDisplayNew of type_path
| ETernary of expr * expr * expr
| ECheckType of expr * complex_type
| EMeta of metadata_entry * expr
and expr = expr_def * pos
and type_param = {
tp_name : string;
tp_params : type_param list;
tp_constraints : complex_type list;
}
and documentation = string option
and metadata_entry = (Meta.strict_meta * expr list * pos)
and metadata = metadata_entry list
and access =
| APublic
| APrivate
| AStatic
| AOverride
| ADynamic
| AInline
| AMacro
and class_field_kind =
| FVar of complex_type option * expr option
| FFun of func
| FProp of string * string * complex_type option * expr option
and class_field = {
cff_name : string;
cff_doc : documentation;
cff_pos : pos;
mutable cff_meta : metadata;
mutable cff_access : access list;
mutable cff_kind : class_field_kind;
}
type enum_flag =
| EPrivate
| EExtern
type class_flag =
| HInterface
| HExtern
| HPrivate
| HExtends of type_path
| HImplements of type_path
type abstract_flag =
| APrivAbstract
| AFromType of complex_type
| AToType of complex_type
| AIsType of complex_type
type enum_constructor = {
ec_name : string;
ec_doc : documentation;
ec_meta : metadata;
ec_args : (string * bool * complex_type) list;
ec_pos : pos;
ec_params : type_param list;
ec_type : complex_type option;
}
type ('a,'b) definition = {
d_name : string;
d_doc : documentation;
d_params : type_param list;
d_meta : metadata;
d_flags : 'a list;
d_data : 'b;
}
type import_mode =
| INormal
| IAsName of string
| IAll
type type_def =
| EClass of (class_flag, class_field list) definition
| EEnum of (enum_flag, enum_constructor list) definition
| ETypedef of (enum_flag, complex_type) definition
| EAbstract of (abstract_flag, class_field list) definition
| EImport of (string * pos) list * import_mode
| EUsing of type_path
type type_decl = type_def * pos
type package = string list * type_decl list
let is_lower_ident i =
let rec loop p =
match String.unsafe_get i p with
| 'a'..'z' -> true
| '_' -> if p + 1 < String.length i then loop (p + 1) else true
| _ -> false
in
loop 0
let pos = snd
let is_postfix (e,_) = function
| Increment | Decrement -> (match e with EConst _ | EField _ | EArray _ -> true | _ -> false)
| Not | Neg | NegBits -> false
let is_prefix = function
| Increment | Decrement -> true
| Not | Neg | NegBits -> true
let base_class_name = snd
let null_pos = { pfile = "?"; pmin = -1; pmax = -1 }
let punion p p2 =
{
pfile = p.pfile;
pmin = min p.pmin p2.pmin;
pmax = max p.pmax p2.pmax;
}
let rec punion_el el = match el with
| [] ->
null_pos
| (_,p) :: [] ->
p
| (_,p) :: el ->
punion p (punion_el el)
let s_type_path (p,s) = match p with [] -> s | _ -> String.concat "." p ^ "." ^ s
let parse_path s =
match List.rev (ExtString.String.nsplit s ".") with
| [] -> failwith "Invalid empty path"
| x :: l -> List.rev l, x
let s_escape s =
let b = Buffer.create (String.length s) in
for i = 0 to (String.length s) - 1 do
match s.[i] with
| '\n' -> Buffer.add_string b "\\n"
| '\t' -> Buffer.add_string b "\\t"
| '\r' -> Buffer.add_string b "\\r"
| '"' -> Buffer.add_string b "\\\""
| '\\' -> Buffer.add_string b "\\\\"
| c -> Buffer.add_char b c
done;
Buffer.contents b
let s_constant = function
| Int s -> s
| Float s -> s
| String s -> "\"" ^ s_escape s ^ "\""
| Ident s -> s
| Regexp (r,o) -> "~/" ^ r ^ "/"
let s_access = function
| APublic -> "public"
| APrivate -> "private"
| AStatic -> "static"
| AOverride -> "override"
| ADynamic -> "dynamic"
| AInline -> "inline"
| AMacro -> "macro"
let s_keyword = function
| Function -> "function"
| Class -> "class"
| Static -> "static"
| Var -> "var"
| If -> "if"
| Else -> "else"
| While -> "while"
| Do -> "do"
| For -> "for"
| Break -> "break"
| Return -> "return"
| Continue -> "continue"
| Extends -> "extends"
| Implements -> "implements"
| Import -> "import"
| Switch -> "switch"
| Case -> "case"
| Default -> "default"
| Private -> "private"
| Public -> "public"
| Try -> "try"
| Catch -> "catch"
| New -> "new"
| This -> "this"
| Throw -> "throw"
| Extern -> "extern"
| Enum -> "enum"
| In -> "in"
| Interface -> "interface"
| Untyped -> "untyped"
| Cast -> "cast"
| Override -> "override"
| Typedef -> "typedef"
| Dynamic -> "dynamic"
| Package -> "package"
| Inline -> "inline"
| Using -> "using"
| Null -> "null"
| True -> "true"
| False -> "false"
| Abstract -> "abstract"
| Macro -> "macro"
let rec s_binop = function
| OpAdd -> "+"
| OpMult -> "*"
| OpDiv -> "/"
| OpSub -> "-"
| OpAssign -> "="
| OpEq -> "=="
| OpNotEq -> "!="
| OpGte -> ">="
| OpLte -> "<="
| OpGt -> ">"
| OpLt -> "<"
| OpAnd -> "&"
| OpOr -> "|"
| OpXor -> "^"
| OpBoolAnd -> "&&"
| OpBoolOr -> "||"
| OpShr -> ">>"
| OpUShr -> ">>>"
| OpShl -> "<<"
| OpMod -> "%"
| OpAssignOp op -> s_binop op ^ "="
| OpInterval -> "..."
let s_unop = function
| Increment -> "++"
| Decrement -> "--"
| Not -> "!"
| Neg -> "-"
| NegBits -> "~"
let s_token = function
| Eof -> "<end of file>"
| Const c -> s_constant c
| Kwd k -> s_keyword k
| Comment s -> "/*"^s^"*/"
| CommentLine s -> "//"^s
| Binop o -> s_binop o
| Unop o -> s_unop o
| Semicolon -> ";"
| Comma -> ","
| BkOpen -> "["
| BkClose -> "]"
| BrOpen -> "{"
| BrClose -> "}"
| POpen -> "("
| PClose -> ")"
| Dot -> "."
| DblDot -> ":"
| Arrow -> "->"
| IntInterval s -> s ^ "..."
| Sharp s -> "#" ^ s
| Question -> "?"
| At -> "@"
| Dollar v -> "$" ^ v
let unescape s =
let b = Buffer.create 0 in
let rec loop esc i =
if i = String.length s then
()
else
let c = s.[i] in
if esc then begin
let inext = ref (i + 1) in
(match c with
| 'n' -> Buffer.add_char b '\n'
| 'r' -> Buffer.add_char b '\r'
| 't' -> Buffer.add_char b '\t'
| '"' | '\'' | '\\' -> Buffer.add_char b c
| '0'..'3' ->
let c = (try char_of_int (int_of_string ("0o" ^ String.sub s i 3)) with _ -> raise Exit) in
Buffer.add_char b c;
inext := !inext + 2;
| 'x' ->
let c = (try char_of_int (int_of_string ("0x" ^ String.sub s (i+1) 2)) with _ -> raise Exit) in
Buffer.add_char b c;
inext := !inext + 2;
| _ ->
raise Exit);
loop false !inext;
end else
match c with
| '\\' -> loop true (i + 1)
| c ->
Buffer.add_char b c;
loop false (i + 1)
in
loop false 0;
Buffer.contents b
let map_expr loop (e,p) =
let opt f o =
match o with None -> None | Some v -> Some (f v)
in
let rec tparam = function
| TPType t -> TPType (ctype t)
| TPExpr e -> TPExpr (loop e)
and cfield f =
{ f with cff_kind = (match f.cff_kind with
| FVar (t,e) -> FVar (opt ctype t, opt loop e)
| FFun f -> FFun (func f)
| FProp (get,set,t,e) -> FProp (get,set,opt ctype t,opt loop e))
}
and ctype = function
| CTPath t -> CTPath (tpath t)
| CTFunction (cl,c) -> CTFunction (List.map ctype cl, ctype c)
| CTAnonymous fl -> CTAnonymous (List.map cfield fl)
| CTParent t -> CTParent (ctype t)
| CTExtend (t,fl) -> CTExtend (tpath t, List.map cfield fl)
| CTOptional t -> CTOptional (ctype t)
and tparamdecl t =
{ tp_name = t.tp_name; tp_constraints = List.map ctype t.tp_constraints; tp_params = List.map tparamdecl t.tp_params }
and func f =
{
f_params = List.map tparamdecl f.f_params;
f_args = List.map (fun (n,o,t,e) -> n,o,opt ctype t,opt loop e) f.f_args;
f_type = opt ctype f.f_type;
f_expr = opt loop f.f_expr;
}
and tpath t = { t with tparams = List.map tparam t.tparams }
in
let e = (match e with
| EConst _ -> e
| EArray (e1,e2) -> EArray (loop e1, loop e2)
| EBinop (op,e1,e2) -> EBinop (op,loop e1, loop e2)
| EField (e,f) -> EField (loop e, f)
| EParenthesis e -> EParenthesis (loop e)
| EObjectDecl fl -> EObjectDecl (List.map (fun (f,e) -> f,loop e) fl)
| EArrayDecl el -> EArrayDecl (List.map loop el)
| ECall (e,el) -> ECall (loop e, List.map loop el)
| ENew (t,el) -> ENew (tpath t,List.map loop el)
| EUnop (op,f,e) -> EUnop (op,f,loop e)
| EVars vl -> EVars (List.map (fun (n,t,eo) -> n,opt ctype t,opt loop eo) vl)
| EFunction (n,f) -> EFunction (n,func f)
| EBlock el -> EBlock (List.map loop el)
| EFor (e1,e2) -> EFor (loop e1, loop e2)
| EIn (e1,e2) -> EIn (loop e1, loop e2)
| EIf (e,e1,e2) -> EIf (loop e, loop e1, opt loop e2)
| EWhile (econd,e,f) -> EWhile (loop econd, loop e, f)
| ESwitch (e,cases,def) -> ESwitch (loop e, List.map (fun (el,eg,e) -> List.map loop el, opt loop eg, opt loop e) cases, opt (opt loop) def)
| ETry (e, catches) -> ETry (loop e, List.map (fun (n,t,e) -> n,ctype t,loop e) catches)
| EReturn e -> EReturn (opt loop e)
| EBreak -> EBreak
| EContinue -> EContinue
| EUntyped e -> EUntyped (loop e)
| EThrow e -> EThrow (loop e)
| ECast (e,t) -> ECast (loop e,opt ctype t)
| EDisplay (e,f) -> EDisplay (loop e,f)
| EDisplayNew t -> EDisplayNew (tpath t)
| ETernary (e1,e2,e3) -> ETernary (loop e1,loop e2,loop e3)
| ECheckType (e,t) -> ECheckType (loop e, ctype t)
| EMeta (m,e) -> EMeta(m, loop e)
) in
(e,p)
let reify in_macro =
let mk_enum ename n vl p =
let constr = (EConst (Ident n),p) in
match vl with
| [] -> constr
| _ -> (ECall (constr,vl),p)
in
let to_const c p =
let cst n v = mk_enum "Constant" n [EConst (String v),p] p in
match c with
| Int i -> cst "CInt" i
| String s -> cst "CString" s
| Float s -> cst "CFloat" s
| Ident s -> cst "CIdent" s
| Regexp (r,o) -> mk_enum "Constant" "CRegexp" [(EConst (String r),p);(EConst (String o),p)] p
in
let rec to_binop o p =
let op n = mk_enum "Binop" n [] p in
match o with
| OpAdd -> op "OpAdd"
| OpMult -> op "OpMult"
| OpDiv -> op "OpDiv"
| OpSub -> op "OpSub"
| OpAssign -> op "OpAssign"
| OpEq -> op "OpEq"
| OpNotEq -> op "OpNotEq"
| OpGt -> op "OpGt"
| OpGte -> op "OpGte"
| OpLt -> op "OpLt"
| OpLte -> op "OpLte"
| OpAnd -> op "OpAnd"
| OpOr -> op "OpOr"
| OpXor -> op "OpXor"
| OpBoolAnd -> op "OpBoolAnd"
| OpBoolOr -> op "OpBoolOr"
| OpShl -> op "OpShl"
| OpShr -> op "OpShr"
| OpUShr -> op "OpUShr"
| OpMod -> op "OpMod"
| OpAssignOp o -> mk_enum "Binop" "OpAssignOp" [to_binop o p] p
| OpInterval -> op "OpInterval"
in
let to_string s p =
let len = String.length s in
if len > 1 && s.[0] = '$' then
(EConst (Ident (String.sub s 1 (len - 1))),p)
else
(EConst (String s),p)
in
let to_array f a p =
(EArrayDecl (List.map (fun s -> f s p) a),p)
in
let to_null p =
(EConst (Ident "null"),p)
in
let to_opt f v p =
match v with
| None -> to_null p
| Some v -> f v p
in
let to_bool o p =
(EConst (Ident (if o then "true" else "false")),p)
in
let to_obj fields p =
(EObjectDecl fields,p)
in
let rec to_tparam t p =
let n, v = (match t with
| TPType t -> "TPType", to_ctype t p
| TPExpr e -> "TPExpr", to_expr e p
) in
mk_enum "TypeParam" n [v] p
and to_tpath t p =
let fields = [
("pack", to_array to_string t.tpackage p);
("name", to_string t.tname p);
("params", to_array to_tparam t.tparams p);
] in
to_obj (match t.tsub with None -> fields | Some s -> fields @ ["sub",to_string s p]) p
and to_ctype t p =
let ct n vl = mk_enum "ComplexType" n vl p in
match t with
| CTPath { tpackage = []; tparams = []; tsub = None; tname = n } when n.[0] = '$' ->
to_string n p
| CTPath t -> ct "TPath" [to_tpath t p]
| CTFunction (args,ret) -> ct "TFunction" [to_array to_ctype args p; to_ctype ret p]
| CTAnonymous fields -> ct "TAnonymous" [to_array to_cfield fields p]
| CTParent t -> ct "TParent" [to_ctype t p]
| CTExtend (t,fields) -> ct "TExtend" [to_tpath t p; to_array to_cfield fields p]
| CTOptional t -> ct "TOptional" [to_ctype t p]
and to_fun f p =
let farg (n,o,t,e) p =
let fields = [
"name", to_string n p;
"opt", to_bool o p;
"type", to_opt to_ctype t p;
] in
to_obj (match e with None -> fields | Some e -> fields @ ["value",to_expr e p]) p
in
let rec fparam t p =
let fields = [
"name", to_string t.tp_name p;
"constraints", to_array to_ctype t.tp_constraints p;
"params", to_array fparam t.tp_params p;
] in
to_obj fields p
in
let fields = [
("args",to_array farg f.f_args p);
("ret",to_opt to_ctype f.f_type p);
("expr",to_opt to_expr f.f_expr p);
("params",to_array fparam f.f_params p);
] in
to_obj fields p
and to_cfield f p =
let p = f.cff_pos in
let to_access a p =
let n = (match a with
| APublic -> "APublic"
| APrivate -> "APrivate"
| AStatic -> "AStatic"
| AOverride -> "AOverride"
| ADynamic -> "ADynamic"
| AInline -> "AInline"
| AMacro -> "AMacro"
) in
mk_enum "Access" n [] p
in
let to_kind k =
let n, vl = (match k with
| FVar (ct,e) -> "FVar", [to_opt to_ctype ct p;to_opt to_expr e p]
| FFun f -> "FFun", [to_fun f p]
| FProp (get,set,t,e) -> "FProp", [to_string get p; to_string set p; to_opt to_ctype t p; to_opt to_expr e p]
) in
mk_enum "FieldType" n vl p
in
let fields = [