@@ -1317,46 +1317,46 @@ let exports cxt f (idents : Ident.t list) =
1317
1317
outer_cxt
1318
1318
1319
1319
1320
- let node_program f ( {program ; modules ; } : J.deps_program ) =
1321
- let cxt = Ext_pp_scope. empty in
1322
- (* Node style *)
1323
- let requires cxt f (modules : (Ident.t * string) list ) =
1324
- P. newline f ;
1325
- (* the context used to print the following program *)
1326
- let outer_cxt, reversed_list, margin =
1327
- List. fold_left
1328
- (fun (cxt , acc , len ) (id ,s ) ->
1329
- let str, cxt = str_of_ident cxt id in
1330
- cxt, ((str,s) :: acc), (max len (String. length str))
1331
- )
1332
- (cxt, [] , 0 ) modules in
1333
- P. force_newline f ;
1334
- Ext_list. rev_iter (fun (s ,file ) ->
1335
- P. string f L. var;
1336
- P. space f ;
1337
- P. string f s ;
1338
- P. nspace f (margin - String. length s + 1 ) ;
1339
- P. string f L. eq;
1340
- P. space f;
1341
- P. string f L. require;
1342
- P. paren_group f 0 @@ (fun _ ->
1343
- pp_string f ~utf: true ~quote: (best_string_quote s) file );
1344
- semi f ;
1345
- P. newline f ;
1346
- ) reversed_list;
1347
- outer_cxt
1348
- in
1349
-
1350
- let cxt = requires cxt f modules in
1320
+ (* Node style *)
1321
+ let requires cxt f (modules : (Ident.t * string) list ) =
1322
+ P. newline f ;
1323
+ (* the context used to print the following program *)
1324
+ let outer_cxt, reversed_list, margin =
1325
+ List. fold_left
1326
+ (fun (cxt , acc , len ) (id ,s ) ->
1327
+ let str, cxt = str_of_ident cxt id in
1328
+ cxt, ((str,s) :: acc), (max len (String. length str))
1329
+ )
1330
+ (cxt, [] , 0 ) modules in
1331
+ P. force_newline f ;
1332
+ Ext_list. rev_iter (fun (s ,file ) ->
1333
+ P. string f L. var;
1334
+ P. space f ;
1335
+ P. string f s ;
1336
+ P. nspace f (margin - String. length s + 1 ) ;
1337
+ P. string f L. eq;
1338
+ P. space f;
1339
+ P. string f L. require;
1340
+ P. paren_group f 0 @@ (fun _ ->
1341
+ pp_string f ~utf: true ~quote: (best_string_quote s) file );
1342
+ semi f ;
1343
+ P. newline f ;
1344
+ ) reversed_list;
1345
+ outer_cxt
1351
1346
1347
+ let program f cxt ( x : J.program ) =
1352
1348
let () = P. force_newline f in
1353
- let cxt = statement_list true cxt f program .block in
1349
+ let cxt = statement_list true cxt f x .block in
1354
1350
let () = P. force_newline f in
1355
- exports cxt f program .exports
1351
+ exports cxt f x .exports
1356
1352
1353
+ let node_program f ( x : J.deps_program ) =
1354
+ let cxt = requires ( Ext_pp_scope. empty) f x.modules in
1355
+ program f cxt x.program
1356
+
1357
1357
1358
1358
let amd_program f
1359
- ( {program ; modules ; _} : J.deps_program )
1359
+ ( x : J.deps_program )
1360
1360
=
1361
1361
P. newline f ;
1362
1362
let cxt = Ext_pp_scope. empty in
@@ -1369,7 +1369,7 @@ let amd_program f
1369
1369
P. string f L. comma ;
1370
1370
P. space f;
1371
1371
pp_string f ~utf: true ~quote: (best_string_quote s) s;
1372
- ) modules ;
1372
+ ) x. modules ;
1373
1373
P. string f " ]" ;
1374
1374
P. string f L. comma;
1375
1375
P. newline f;
@@ -1382,33 +1382,30 @@ let amd_program f
1382
1382
P. string f L. comma;
1383
1383
P. space f ;
1384
1384
ident cxt f id
1385
- ) cxt modules
1385
+ ) cxt x. modules
1386
1386
in
1387
1387
P. string f " )" ;
1388
- P. brace_vgroup f 1 @@ (fun _ ->
1388
+ let v = P. brace_vgroup f 1 @@ (fun _ ->
1389
1389
let () = P. string f L. strict_directive in
1390
- let () = P. newline f in
1391
- let cxt = statement_list true cxt f program.block in
1392
- (* FIXME AMD : use {[ function xx ]} or {[ var x = function ..]} *)
1393
- P. newline f;
1394
- P. force_newline f;
1395
- ignore (exports cxt f program.exports));
1390
+ program f cxt x.program
1391
+ ) in
1396
1392
P. string f " )" ;
1393
+ v
1397
1394
;;
1398
1395
1399
- let pp_program ( program : J.deps_program ) (f : Ext_pp.t ) =
1396
+ let pp_deps_program ( program : J.deps_program ) (f : Ext_pp.t ) =
1400
1397
begin
1401
1398
P. string f " // Generated CODE, PLEASE EDIT WITH CARE" ;
1402
1399
P. newline f;
1403
1400
P. string f L. strict_directive;
1404
1401
P. newline f ;
1405
- (match Js_config. get_env () with
1402
+ ignore (match Js_config. get_env () with
1406
1403
| Browser ->
1407
- ignore (node_program f program)
1404
+ (node_program f program)
1408
1405
| NodeJS ->
1409
1406
begin match Sys. getenv " OCAML_AMD_MODULE" with
1410
1407
| exception Not_found ->
1411
- ignore (node_program f program)
1408
+ (node_program f program)
1412
1409
(* amd_program f program *)
1413
1410
| _ -> amd_program f program
1414
1411
end ) ;
@@ -1420,7 +1417,25 @@ let pp_program ( program : J.deps_program) (f : Ext_pp.t) =
1420
1417
P. newline f;
1421
1418
P. flush f ()
1422
1419
end
1423
- let dump_program
1424
- (program : J.deps_program )
1420
+
1421
+ let dump_program (x : J.program ) oc =
1422
+ ignore (program (P. from_channel oc) Ext_pp_scope. empty x )
1423
+
1424
+ let dump_deps_program
1425
+ x
1425
1426
(oc : out_channel ) =
1426
- pp_program program (P. from_channel oc)
1427
+ pp_deps_program x (P. from_channel oc)
1428
+
1429
+ let string_of_block block
1430
+ =
1431
+ let buffer = Buffer. create 50 in
1432
+ begin
1433
+ let f = P. from_buffer buffer in
1434
+ let _scope = statement_list true Ext_pp_scope. empty f block in
1435
+ P. flush f () ;
1436
+ Buffer. contents buffer
1437
+ end
1438
+
1439
+
1440
+
1441
+
0 commit comments