| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774 |
- (*
- * 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;
- }
- 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
- | Callback
- | Inline
- | Using
- | Null
- | True
- | False
- 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
- | Macro 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) list * expr 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
- and expr = expr_def * pos
- and type_param = string * complex_type list
- and documentation = string option
- and metadata = (string * expr list * pos) list
- and access =
- | APublic
- | APrivate
- | AStatic
- | AOverride
- | ADynamic
- | AInline
- and class_field_kind =
- | FVar of complex_type option * expr option
- | FFun of func
- | FProp of string * string * complex_type * 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 enum_constructor = string * documentation * metadata * (string * bool * complex_type) list * pos
- 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 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
- | EImport of type_path
- | 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 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"
- 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"
- | Callback -> "callback"
- | Inline -> "inline"
- | Using -> "using"
- | Null -> "null"
- | True -> "true"
- | False -> "false"
- 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 ^ "..."
- | Macro 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,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 func f =
- {
- f_params = List.map (fun (n,tl) -> n,List.map ctype tl) 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,e) -> List.map loop el, loop e) cases, 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)
- ) 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 > 0 && 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 fparam (n,tl) p =
- let fields = [
- "name", to_string n p;
- "constraints", to_array to_ctype tl 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"
- ) 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_ctype t p; to_opt to_expr e p]
- ) in
- mk_enum "FieldType" n vl p
- in
- let fields = [
- Some ("name", to_string f.cff_name p);
- (match f.cff_doc with None -> None | Some s -> Some ("doc", to_string s p));
- (match f.cff_access with [] -> None | l -> Some ("access", to_array to_access l p));
- Some ("kind", to_kind f.cff_kind);
- Some ("pos", to_pos f.cff_pos);
- (match f.cff_meta with [] -> None | l -> Some ("meta", to_meta f.cff_meta p));
- ] in
- let fields = List.rev (List.fold_left (fun acc v -> match v with None -> acc | Some e -> e :: acc) [] fields) in
- to_obj fields p
- and to_meta m p =
- to_array (fun (m,el,p) _ ->
- let fields = [
- "name", to_string m p;
- "params", to_array to_expr el p;
- "pos", to_pos p;
- ] in
- to_obj fields p
- ) m p
- and to_pos p =
- let file = (EConst (String p.pfile),p) in
- let pmin = (EConst (Int (string_of_int p.pmin)),p) in
- let pmax = (EConst (Int (string_of_int p.pmax)),p) in
- if in_macro then
- (EUntyped (ECall ((EConst (Ident "$mk_pos"),p),[file;pmin;pmax]),p),p)
- else
- to_obj [("file",file);("min",pmin);("max",pmax)] p
- and to_expr e _ =
- let p = snd e in
- let expr n vl =
- let e = mk_enum "ExprDef" n vl p in
- to_obj [("expr",e);("pos",to_pos p)] p
- in
- let loop e = to_expr e (snd e) in
- match fst e with
- | EConst (Ident n) when n.[0] = '$' ->
- to_string n p
- | EConst c ->
- expr "EConst" [to_const c p]
- | EArray (e1,e2) ->
- expr "EArray" [loop e1;loop e2]
- | EBinop (op,e1,e2) ->
- expr "EBinop" [to_binop op p; loop e1; loop e2]
- | EField (e,s) ->
- expr "EField" [loop e; to_string s p]
- | EParenthesis e ->
- expr "EParenthesis" [loop e]
- | EObjectDecl fl ->
- expr "EObjectDecl" [to_array (fun (f,e) -> to_obj [("field",to_string f p);("expr",loop e)]) fl p]
- | EArrayDecl el ->
- expr "EArrayDecl" [to_array to_expr el p]
- | ECall ((EConst(Ident("$")),_),[e]) ->
- (ECall ((EField ((EField ((EField ((EConst (Ident "haxe"),p),"macro"),p),"Context"),p),"makeExpr"),p),[e; to_pos (pos e)]),p)
- | ECall (e,el) ->
- expr "ECall" [loop e;to_array to_expr el p]
- | ENew (t,el) ->
- expr "ENew" [to_tpath t p;to_array to_expr el p]
- | EUnop (op,flag,e) ->
- let op = mk_enum "Unop" (match op with
- | Increment -> "OpIncrement"
- | Decrement -> "OpDecrement"
- | Not -> "OpNot"
- | Neg -> "OpNeg"
- | NegBits -> "OpNegBits"
- ) [] p in
- expr "EUnop" [op;to_bool (flag = Postfix) p;loop e]
- | EVars vl ->
- expr "EVars" [to_array (fun (v,t,e) p ->
- let fields = [
- "name", to_string v p;
- "type", to_opt to_ctype t p;
- "expr", to_opt to_expr e p;
- ] in
- to_obj fields p
- ) vl p]
- | EFunction (name,f) ->
- expr "EFunction" [to_opt to_string name p; to_fun f p]
- | EBlock el ->
- expr "EBlock" [to_array to_expr el p]
- | EFor (e1,e2) ->
- expr "EFor" [loop e1;loop e2]
- | EIn (e1,e2) ->
- expr "EIn" [loop e1;loop e2]
- | EIf (e1,e2,eelse) ->
- expr "EIf" [loop e1;loop e2;to_opt to_expr eelse p]
- | EWhile (e1,e2,flag) ->
- expr "EWhile" [loop e1;loop e2;to_bool (flag = NormalWhile) p]
- | ESwitch (e1,cases,def) ->
- let scase (el,e) p =
- to_obj [("values",to_array to_expr el p);"expr",loop e] p
- in
- expr "ESwitch" [loop e1;to_array scase cases p;to_opt to_expr def p]
- | ETry (e1,catches) ->
- let scatch (n,t,e) p =
- to_obj [("name",to_string n p);("type",to_ctype t p);("expr",loop e)] p
- in
- expr "ETry" [loop e1;to_array scatch catches p]
- | EReturn eo ->
- expr "EReturn" [to_opt to_expr eo p]
- | EBreak ->
- expr "EBreak" []
- | EContinue ->
- expr "EContinue" []
- | EUntyped e ->
- expr "EUntyped" [loop e]
- | EThrow e ->
- expr "EThrow" [loop e]
- | ECast (e,ct) ->
- expr "ECast" [loop e; to_opt to_ctype ct p]
- | EDisplay (e,flag) ->
- expr "EDisplay" [loop e; to_bool flag p]
- | EDisplayNew t ->
- expr "EDisplayNew" [to_tpath t p]
- | ETernary (e1,e2,e3) ->
- expr "ETernary" [loop e1;loop e2;loop e3]
- | ECheckType (e1,ct) ->
- expr "ECheckType" [loop e1; to_ctype ct p]
- in
- (fun e -> to_expr e (snd e)), to_ctype
|