Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jsexplain
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verified Software
jsexplain
Commits
311acd5a
Commit
311acd5a
authored
9 years ago
by
charguer
Browse files
Options
Downloads
Patches
Plain Diff
module
parent
f900e79d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
generator/js_of_ast.ml
+4
-4
4 additions, 4 deletions
generator/js_of_ast.ml
generator/tests/testctx.ml
+5
-3
5 additions, 3 deletions
generator/tests/testctx.ml
with
9 additions
and
7 deletions
generator/js_of_ast.ml
+
4
−
4
View file @
311acd5a
...
@@ -398,8 +398,9 @@ and js_of_structure_item s =
...
@@ -398,8 +398,9 @@ and js_of_structure_item s =
match
s
.
str_desc
with
match
s
.
str_desc
with
|
Tstr_eval
(
e
,
_
)
->
Printf
.
sprintf
"%s"
@@
js_of_expression
ctx_initial
Dest_ignore
e
|
Tstr_eval
(
e
,
_
)
->
Printf
.
sprintf
"%s"
@@
js_of_expression
ctx_initial
Dest_ignore
e
|
Tstr_value
(
_
,
vb_l
)
->
String
.
concat
"@,@,"
@@
List
.
map
(
fun
vb
->
|
Tstr_value
(
_
,
vb_l
)
->
String
.
concat
"@,@,"
@@
List
.
map
(
fun
vb
->
let
(
id
,
sdecl
)
=
show_value_binding
ctx_initial
vb
in
(* let (id, sdecl) = show_value_binding ctx_initial vb in *)
sdecl
)
@@
vb_l
Printf
.
sprintf
"@
\n
@
\n
%s: %s,"
(
ident_of_pat
vb
.
vb_pat
)
(
js_of_expression_inline_or_wrap
ctx_initial
vb
.
vb_expr
))
@@
vb_l
|
Tstr_type
_
->
""
(* Types have no representation in JS, but the OCaml type checker uses them *)
|
Tstr_type
_
->
""
(* Types have no representation in JS, but the OCaml type checker uses them *)
|
Tstr_open
_
->
""
(* Handle modules by use of multiple compilation/linking *)
|
Tstr_open
_
->
""
(* Handle modules by use of multiple compilation/linking *)
|
Tstr_modtype
_
->
""
|
Tstr_modtype
_
->
""
...
@@ -461,8 +462,7 @@ and js_of_expression ctx dest e =
...
@@ -461,8 +462,7 @@ and js_of_expression ctx dest e =
in
in
let
arg_ids
,
body
=
explore
[
c
.
c_lhs
]
c
.
c_rhs
in
let
arg_ids
,
body
=
explore
[
c
.
c_lhs
]
c
.
c_rhs
in
let
newctx
=
ctx_fresh
()
in
let
newctx
=
ctx_fresh
()
in
let
newdest
=
Dest_return
in
let
sbody
=
js_of_expression
newctx
Dest_return
body
in
let
sbody
=
js_of_expression
newctx
newdest
body
in
let
sexp
=
generate_logged_enter
arg_ids
ctx
newctx
sbody
in
let
sexp
=
generate_logged_enter
arg_ids
ctx
newctx
sbody
in
apply_dest
ctx
dest
sexp
apply_dest
ctx
dest
sexp
...
...
This diff is collapsed.
Click to expand it.
generator/tests/testctx.ml
+
5
−
3
View file @
311acd5a
...
@@ -3,7 +3,7 @@ let testa x =
...
@@ -3,7 +3,7 @@ let testa x =
x
x
let
testb
x
=
let
testb
x
=
let
x
=
x
in
x
let
a
=
x
in
a
let
testc
x
=
let
testc
x
=
let
y
=
x
in
let
y
=
x
in
...
@@ -33,7 +33,7 @@ let testg x =
...
@@ -33,7 +33,7 @@ let testg x =
let
test0
=
let
test0
f
=
match
Some
3
with
match
Some
3
with
|
None
->
2
|
None
->
2
|
Some
y
->
y
|
Some
y
->
y
...
@@ -80,4 +80,6 @@ let test6 =
...
@@ -80,4 +80,6 @@ let test6 =
(*
(*
let test6 (x,y) =
let test6 (x,y) =
x
x
*)
*)
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment