Skip to content
Snippets Groups Projects
Commit d4586e2e authored by Thomas Wood's avatar Thomas Wood
Browse files

Records are no longer write-only data structures.

Oddly enough, field accesses weren't in scope. They're most definitely
required.
parent 5ad7b198
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,9 @@ let ppf_pat_array id_list array_expr = ...@@ -208,6 +208,9 @@ let ppf_pat_array id_list array_expr =
List.fold_left2 (fun acc (name, exp_type) y -> acc ^ Printf.sprintf "@[<v 0>var %s = __%s[%d];@,@]" name "array" y) List.fold_left2 (fun acc (name, exp_type) y -> acc ^ Printf.sprintf "@[<v 0>var %s = __%s[%d];@,@]" name "array" y)
"" id_list @@ range 0 (List.length id_list - 1) "" id_list @@ range 0 (List.length id_list - 1)
let ppf_field_access expr field =
Printf.sprintf "%s.%s" expr field
(** (**
* Module managment part * Module managment part
*) *)
...@@ -358,12 +361,14 @@ and js_of_expression ?(mod_gen=[]) old_env e = ...@@ -358,12 +361,14 @@ and js_of_expression ?(mod_gen=[]) old_env e =
| Texp_while (cd, body) -> ppf_while (js_of_expression ~mod_gen new_env cd) (js_of_expression ~mod_gen new_env body) | Texp_while (cd, body) -> ppf_while (js_of_expression ~mod_gen new_env cd) (js_of_expression ~mod_gen new_env body)
| Texp_for (id, _, st, ed, fl, body) -> ppf_for (Ident.name id) (js_of_expression ~mod_gen new_env st) (js_of_expression ~mod_gen new_env ed) fl (js_of_expression ~mod_gen new_env body) | Texp_for (id, _, st, ed, fl, body) -> ppf_for (Ident.name id) (js_of_expression ~mod_gen new_env st) (js_of_expression ~mod_gen new_env ed) fl (js_of_expression ~mod_gen new_env body)
| Texp_record (llde,_) -> ppf_record (List.map (fun (_, lbl, exp) -> (lbl.lbl_name, js_of_expression ~mod_gen new_env exp)) llde) | Texp_record (llde,_) -> ppf_record (List.map (fun (_, lbl, exp) -> (lbl.lbl_name, js_of_expression ~mod_gen new_env exp)) llde)
| Texp_field (exp, _, lbl) ->
ppf_field_access (js_of_expression ~mod_gen new_env exp) lbl.lbl_name
| Texp_match (_,_,_, Partial) -> out_of_scope locn "partial matching" | Texp_match (_,_,_, Partial) -> out_of_scope locn "partial matching"
| Texp_match (_,_,_,_) -> out_of_scope locn "matching with exception branches" | Texp_match (_,_,_,_) -> out_of_scope locn "matching with exception branches"
| Texp_try (_,_) -> out_of_scope locn "exceptions" | Texp_try (_,_) -> out_of_scope locn "exceptions"
| Texp_function (_,_,_) -> out_of_scope locn "powered-up functions" | Texp_function (_,_,_) -> out_of_scope locn "powered-up functions"
| Texp_variant (_,_) -> out_of_scope locn "polymorphic variant" | Texp_variant (_,_) -> out_of_scope locn "polymorphic variant"
| Texp_field (_,_,_) -> out_of_scope locn "accessing field"
| Texp_setfield (_,_,_,_) -> out_of_scope locn "setting field" | Texp_setfield (_,_,_,_) -> out_of_scope locn "setting field"
| Texp_send (_,_,_) -> out_of_scope locn "objects" | Texp_send (_,_,_) -> out_of_scope locn "objects"
| Texp_new (_,_,_) -> out_of_scope locn "objects" | Texp_new (_,_,_) -> out_of_scope locn "objects"
......
...@@ -9,3 +9,15 @@ let boss = ...@@ -9,3 +9,15 @@ let boss =
; status = "boss" ; status = "boss"
; age = 48 ; age = 48
} }
let ab = boss.age
(* We do not support with syntax
* let newboss = { boss with name = "john" } *)
(* Field punning *)
let newboss =
let name = "pun" in
let status = "awful" in
let age = 0 in
{ name; status; age }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment