package pfff

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file cst_js.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
(* Yoann Padioleau
 *
 * Copyright (C) 2010, 2012, 2013 Facebook
 * Copyright (C) 2019 Yoann Padioleau
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation, with the
 * special exception on linking described in file license.txt.
 *
 * This library 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 file
 * license.txt for more details.
 *)
open Common

module PI = Parse_info

(*****************************************************************************)
(* Prelude *)
(*****************************************************************************)
(* Concrete Syntax Tree for Javascript, Typescript, and Flow.
 * 
 * Specification: 
 *  - http://www.ecma-international.org/publications/standards/Ecma-262.htm
 *  - https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#A
 * See also 
 *  - https://en.wikipedia.org/wiki/JavaScript
 *  - https://en.wikipedia.org/wiki/ECMAScript
 *  - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/
 *  - https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API
 *  - https://es5.github.io/ (annotated spec)
 *
 * This AST (and its associated parser) supports most ES6 features:
 *  - classes  (nicer syntax to define classes than objects and prototypes)
 *  - import/export (cleaner namespace)
 *  - arrows  (short lambdas)
 *  - default parameters
 *  - SEMI variable number of parameters, e.g. 'function foo(...args)'
 *    and spread of parameters with [ ...arr ]
 *  - template strings (a.k.a interpolated strings), see
 *    https://gist.github.com/lukehoban/9303054#template-strings
 *  - let (lexical vars)
 *  - const (immutable declarations)
 *  - get/set (sugar to define getter and setter methods)
 *  - iterators (for ... of and Symbol.iterator special name)
 *  - generators (yield, function* ), which provide a nice syntax 
 *    to define iterators
 *  - optional trailing commas in parameters, arguments, object literals,
 *    and array literals.
 *
 * See http://es6-features.org/ for explanations of those recent features
 * (and also how they can be converted to ES5 code).
 *
 * This AST supports also most ES7-ES9 features:
 *  - exponentiation ** operator
 *  - SEMI destructuring patterns
 *  - SEMI async/await: asynchronous functions and promises
 *
 * This AST (and its associated parser) supports a few more extensions:
 *  - JSX: I am mostly imitating what I have done for XHP in lang_php/,
 *    but with tags possibly containing ':' or '.' in their names
 *  - type annotations a la Flow and TypeScript, see
 *    http://en.wikipedia.org/wiki/TypeScript
 *  - interfaces a la Flow and Typescript
 *  - TODO declaration files for Typescript (giving types to non TS files)
 *  - class variables
 *
 * less:
 *  - imitate https://developer.mozilla.org/en-US/docs/SpiderMonkey/Parser_API
 *
 * related work:
 *  - http://esprima.org/, acorn, cherow: JS parsers written in JS
 *  - babel? a transpiler from JS to ES3 (JS compatible with most browser)
 *  - flow-lang.org, contains now its own parser (it started with this one)
 *  - http://marijnhaverbeke.nl/parse-js/, JS parser in Common Lisp
 *    (which has been since ported to Javascript by the nodejs people)
 *  - jslint, eslint, jshint, tslint
 *)

(*****************************************************************************)
(* The AST related types *)
(*****************************************************************************)
(* ------------------------------------------------------------------------- *)
(* Token/info *)
(* ------------------------------------------------------------------------- *)

(* Contains among other things the position of the token through
 * the Parse_info.token_location embedded inside it, as well as the
 * transformation field that makes possible spatch on Javascript code.
 *)
type tok = Parse_info.info

(* a shortcut to annotate some information with token/position information *)
and 'a wrap = 'a * tok

and 'a paren   = tok * 'a * tok
and 'a brace   = tok * 'a * tok
and 'a bracket = tok * 'a * tok
and 'a angle = tok * 'a * tok
(* can now have a Right tok at the very end with the trailing comma extension
 * and can even have multiple Right together with the elision extension.
 *)
and 'a comma_list = ('a, tok (* the comma *)) Common.either list

(* semicolon. Can be None when was implicitely inserted during parsing *)
and sc = tok option

 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Name *)
(* ------------------------------------------------------------------------- *)
type name = string wrap
 (* with tarzan *)

(* facebook-ext: *)
type xhp_tag = string
 (* with tarzan *)

(* es6: note: does not contain the enclosing "'" but the info does 
 * can contain './' as a prefix and can omit '.js' as an extension.
 *)
type module_path = string wrap
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Expression *)
(* ------------------------------------------------------------------------- *)
type expr =
   | L of literal
   | V of name
   | This of tok
   (* es6: can be part only of Period or Apply expressions *)
   | Super of tok

   (* unop includes new/delete/... *)
   | U of unop wrap * expr
   | B of expr * binop wrap * expr

   | Period of expr * tok (* . *) * name
   (* this is also used to access object computed-fields *)
   | Bracket of expr * expr bracket

   (* can have a trailing comma *)
   | Object of property comma_list brace
   (* The comma_list can have successive Right because of "elision" *)
   | Array of expr comma_list bracket

   (* Call, see also Encaps that is a sort of call when 'name' is not None.
    * This covers Eval.
    *)
   | Apply of expr * expr comma_list paren

   | Conditional of expr * tok (* ? *) * expr * tok (* : *) * expr
   (* bad language, should be in statements *)
   | Assign of expr * assignment_operator wrap * expr
   | Seq of expr * tok (* , *) * expr

   (* lambdas *)
   | Function of func_decl
   (* es6: class expressions (usually in module.exports = class {...};) *)
   | Class of class_decl
   (* es6: arrows, a.k.a short lambdas *)
   | Arrow of arrow_func
   (* es6: generators *)
   | Yield of tok * tok option (* '*' *) * expr option
   (* es7: promises *)
   | Await of tok * expr
   (* es6: meta property *)
   | NewTarget of tok (* new *) * tok (* . *) * tok (* always "target" *)

   (* es6: template (interpolated) strings 
    * less: you can get multiple EncapsString in encaps below; they
    * are not flatten together, to simplify the lexer/parser.
    *)
   | Encaps of name option * tok (* ` *) * encaps list * tok (* ` *)
   (* facebook-ext: *)
   | XhpHtml of xhp_html

   (* unparser: *)
   | Paren of expr paren

     and literal =
       | Bool of bool wrap
       (* float or int, in decimal/octal/binary/hexadecimal format *)
       | Num of string wrap
       (* less:  | Float of float | Int of int32 *)

       (* does not contain the enclosing "'" but the info does *)
       (* see also XhpText, EncapsString and XhpAttrString *)
       | String of string wrap

       | Regexp of string wrap (* todo? should split the flags *)

       (* There is also Undefined, but this is not considered a reserved
        * keyword. It is treated as a builtin instead.
        * (great language: have not just 1 billion dollar mistake but 2!)
        *)
       | Null of tok

     and unop =
       | U_new | U_delete
       | U_typeof
       | U_void 
       | U_pre_increment  | U_pre_decrement
       | U_post_increment | U_post_decrement
       | U_plus | U_minus | U_not | U_bitnot
       (* es6: spread operator, ...xxx *)
       | U_spread

     and binop =
       | B_instanceof  | B_in

       | B_add  | B_sub
       | B_mul  | B_div  | B_mod
       (* es7: *)
       | B_expo

       | B_le  | B_ge  | B_lt  | B_gt
       | B_lsr  | B_asr  | B_lsl
       | B_equal | B_notequal  | B_physequal  | B_physnotequal
       | B_bitand  | B_bitor  | B_bitxor
       | B_and  | B_or


     and assignment_operator =
       | A_eq
       | A_add  | A_sub
       | A_mul  | A_div  | A_mod  
       | A_lsl  | A_lsr  | A_asr
       | A_and  | A_or | A_xor  

(* ------------------------------------------------------------------------- *)
(* Object properties *)
(* ------------------------------------------------------------------------- *)
   and property =
       (* this includes also methods when expr is a Function *)
       | P_field of property_name * tok (* : *) * expr
       (* es6: method notation in object literals too *)
       | P_method of func_decl
       (* es6: { x } <=> { x: x} (similar to OCaml shorthands in records) *)
       | P_shorthand of name
       (* es6: inlining of properties/array-elts/string/args *)
       | P_spread of tok (* ... *) * expr

   and property_name =
   | PN_Id of name
   | PN_String of string wrap
   | PN_Num of string wrap
   (* es6: *)
   | PN_Computed of expr bracket

(* ------------------------------------------------------------------------- *)
(* JSX (=~ XHP from PHP) and interporlated strings *)
(* ------------------------------------------------------------------------- *)

 (* facebook-ext: JSX extension, similar to XHP for PHP (hence the name) *)
 and xhp_html =
   | Xhp of xhp_tag wrap * xhp_attribute list * tok (* > *) *
       xhp_body list * xhp_tag option wrap
   | XhpSingleton of xhp_tag wrap * xhp_attribute list * tok (* /> *)

   and xhp_attribute = 
      | XhpAttrValue of xhp_attr_name * tok (* = *) * xhp_attr_value
      (* not in XHP *)
      | XhpAttrNoValue of xhp_attr_name
      | XhpAttrSpread of (tok * expr) brace
    and xhp_attr_name = string wrap (* e.g. task-bar *)
    and xhp_attr_value =
      | XhpAttrString of string wrap
      | XhpAttrExpr of expr brace
   and xhp_body =
     | XhpText of string wrap
     | XhpExpr of expr option brace
     | XhpNested of xhp_html

 (* es6: template strings (a.k.a. interpolated/encapsulated strings) *)
 and encaps =
 | EncapsString of string wrap
 (* could use 'expr brace', but it's not a regular brace for { *)
 | EncapsExpr of tok (* ${ *) * expr * tok (* } *)

(* ------------------------------------------------------------------------- *)
(* Statement *)
(* ------------------------------------------------------------------------- *)
and stmt =
  | VarsDecl of var_kind wrap * var_binding comma_list * sc

  | Block of item list brace
  | Nop of sc
  | ExprStmt of expr * sc

  | If of tok * expr paren * stmt * (tok (* else *) * stmt) option
  | Do of tok * stmt * tok (* while *) * expr paren * sc
  | While of tok * expr paren * stmt

  | For of tok * tok (* ( *) *
      lhs_or_vars option * tok (* ; *) *
      expr option * tok (* ; *) *
      expr option *
      tok (* ) *) *
      stmt
  | ForIn of tok * tok (* ( *) * lhs_or_var * tok (* in *) *
      expr * tok (* ) *) * stmt
  (* es6: iterators *)
  | ForOf of tok * tok (* ( *) * lhs_or_var * tok (* of *) *
      expr * tok (* ) *) * stmt

  | Switch of tok * expr paren *
      case_clause list brace (* was   (case_clause list * stmt) list *)

  | Continue of tok * label option * sc
  | Break of tok * label option * sc

  | Return of tok * expr option * sc

  | With of tok * expr paren * stmt
  | Labeled of label * tok (*:*) * stmt

  | Throw of tok * expr * sc
  | Try of tok * stmt (* always a block *) *
      (tok * arg_catch paren * stmt) option * (* catch *)
      (tok * stmt) option (* finally *)

  and label = string wrap

  (* less: could unify with 'st', and explain additional constraints *)
  and lhs_or_vars =
    | LHS1 of expr
    | ForVars of (var_kind wrap * var_binding comma_list)

  and lhs_or_var = 
    | LHS2 of expr
    (* the variable_declaration in var_binding  has v_init = None. *)
    | ForVar of (var_kind wrap * var_binding)

  and case_clause =
    | Default of tok * tok (*:*) * item list
    | Case of tok * expr * tok (*:*) * item list

  and arg_catch = string wrap

(* ------------------------------------------------------------------------- *)
(* Type *)
(* ------------------------------------------------------------------------- *)
(* typing-ext: facebook-ext: complex type annotations for Flow/Typescript
 * See also https://www.typescriptlang.org/docs/handbook/advanced-types.html
 *)
and type_ =
  (* used for builtin types like 'void', 'number', 'string', 'any/mixed' *)
  | TName of nominal_type
  | TQuestion of tok * type_
  | TFun of param_types * tok (* => *) * type_
  (* property_name here does not allow PN_Computed
   * comma_list or semicolons_list ?*)
  | TObj of obj_type_member list brace
  | TTodo

  (* Most of the time expr is a (V name),
     but Javascript allows qualified names of the form Period(e,tok,name),
     and other ways of dynamically computing types as well.
  *)
  and nominal_type =
    expr * type_argument comma_list angle option

  and param_types = (param_name * annotation) comma_list paren
    and param_name =
      | RequiredParam of name
      | OptionalParam of name * tok (* ? *)
      | RestParam of tok (* ... *) * name

  and obj_type_member = property_name * annotation * sc


and type_argument = type_

and type_parameters = type_parameter comma_list angle
and type_parameter = name

and type_opt = annotation option

and annotation =
  | TAnnot of tok (* : *) * type_
  | TFunAnnot of type_parameters option * param_types * tok (* : *) * type_



(* ------------------------------------------------------------------------- *)
(* Function (or method) definition *)
(* ------------------------------------------------------------------------- *)
and func_decl = {
  f_kind: func_kind;
  f_properties: func_property list;

  f_params: parameter_binding comma_list paren;
  f_body: item list brace;

  (* typing-ext: *)
  f_type_params: type_parameters option;
  f_return_type: type_opt;
}

  and func_kind =
    (* None for anonymous functions (in expressions or 'export default' decl) *)
    | F_func of tok * name option
    | F_method of property_name
    | F_get of tok * property_name
    | F_set of tok * property_name

  and func_property =
  (* es6: f_body should contain a 'yield' *)
  | Generator of tok (* '*', but this token is after f_tok *)
  (* es7: f_body should contain a 'await' *)
  | Async of tok

  and parameter_binding =
   | ParamClassic of parameter
   | ParamPattern of parameter_pattern

  and parameter = {
   p_name: name;
  (* typing-ext: *)
   p_type: type_opt;
   (* es6: if not None, then can be followed only by other default parameters 
      or a dots parameter in a parameter comma_list *)
   p_default: default option;
   (* es6: if <> None, then should be last param in a parameter comma_list *)
   p_dots: tok (* ... *) option;
  }
  (* es6: *)
  and default =
  | DNone of tok (* ? *)
  | DSome of tok (* = *) * expr

  (* es7: *)
  and parameter_pattern = {
   ppat: pattern;
   ppat_type: type_opt;
   ppat_default: (tok * expr) option;
  }

(* es6: arrows.
 * note: we could factorize with func_def, but this would require many
 * elements to become fake tokens, e.g. the parenthesis for parameters
 * when have only one parameter, the braces and semicolon when the body
 * is a simple expression, etc. so simpler to have a a different type.
 *)
and arrow_func = {
  a_params: arrow_params;
  (* typing-ext: *)
  a_return_type: type_opt;
  a_tok: tok (* => *);
  a_body: arrow_body;
 }
  and arrow_params =
    | ASingleParam of parameter_binding
    | AParams of parameter_binding comma_list paren
  and arrow_body =
    | AExpr of expr
    | ABody of item list brace

(* ------------------------------------------------------------------------- *)
(* Variable definition *)
(* ------------------------------------------------------------------------- *)

and var_binding = 
 | VarClassic of variable_declaration
 (* es6: *)
 | VarPattern of variable_declaration_pattern

  and variable_declaration = {
    v_name: name;
    v_init: init option;
    (* typing-ext: *)
    v_type: type_opt;
  }
    and init = (tok (*=*) * expr)

  (* in theory Const and Let can appear only in statement items, not in
   * simple statements (stmt)
   *)
  and var_kind =
    | Var 
    (* es6: *)
    | Const
    | Let

  and variable_declaration_pattern = {
    vpat: pattern;
    vpat_init: init option; (* None only when inside ForOf *)
    (* typing-ext: *)
    vpat_type: type_opt;
  }

(* ------------------------------------------------------------------------- *)
(* Pattern (destructuring binding) *)
(* ------------------------------------------------------------------------- *)
(* es7?: *)
and pattern = 
  | PatObj of pattern comma_list brace 
  (* the comma_list can contain multiple Right in a row because of elision *)
  | PatArr of pattern comma_list bracket

  | PatId of name * init option
  (* only in PatObj *)
  | PatProp of property_name * tok (* : *) * pattern
  (* only in PatArr *)
  | PatDots of tok (* ... *) * pattern

  | PatNest of pattern * init option

(* ------------------------------------------------------------------------- *)
(* Class definition *)
(* ------------------------------------------------------------------------- *)
(* es6: finally classes built in the language *)
and class_decl = {
  c_tok: tok; (* 'class' *)
  (* None for anon classes in class expressions or 'export default' decls *)
  c_name: name option; 
  (* typing-ext: *)
  c_type_params: type_parameter comma_list angle option;
  c_extends: (tok (* extends *) * nominal_type) option;
  c_body: class_element list brace;
}

  and class_element =
  | C_method of static_opt * func_decl
  | C_field of field_decl * sc
  (* unparser: *)
  | C_extrasemicolon of sc

  (* es6: *)
  and static_opt = tok option (* static *)
  (* es6: *)
  and field_decl = {
    fld_static: static_opt;
    fld_name: property_name;
    fld_type: type_opt;
    fld_init: init option;
  }

(* ------------------------------------------------------------------------- *)
(* Interface definition *)
(* ------------------------------------------------------------------------- *)
(* typing-ext: not in regular JS *)
and interface_decl = {
  i_tok: tok; (* 'interface' *)
  i_name: name;
  i_type_params: type_parameter comma_list angle option;
  (* usually a TObj *)
  i_type: type_;
}

(* ------------------------------------------------------------------------- *)
(* A Statement list item (often just at the toplevel) *)
(* ------------------------------------------------------------------------- *)
and item =
  (* contains VarsDecl, which are a Decl *)
  | St of stmt

  | FunDecl of func_decl
  (* es6-ext: *)
  | ClassDecl of class_decl
  (* typing-ext: *)
  | InterfaceDecl of interface_decl
  | ItemTodo of tok (* last tok, needed for ASI to work *)

(* ------------------------------------------------------------------------- *)
(* Module *)
(* ------------------------------------------------------------------------- *)
(* ES6 module directives can appear only at the toplevel (but note that 
 * CommomJS require() can appear also inside statements)
 *)
(* es6: *)
and import =
  | ImportFrom of (import_clause * (tok (* from *) * module_path))
  (* import for its side effects only *)
  | ImportEffect of module_path

  (* less: if have Some, Some there is a comma between, but the token
   * is not present in the AST.
   *)
  and import_clause = import_default option * name_import option
   and name_import =
     | ImportNamespace of tok (* * *) * tok (* as *) * name
     | ImportNames of import_name comma_list brace
     (* typing-ext: *)
     | ImportTypes of tok (* 'type' *) * import_name comma_list brace
   and import_default = name
   and import_name = name * (tok (* as *) * name) option

(* es6: *)
and export = 
  (* St in item can only be a VarsDecl *)
  | ExportDecl of item
  (* item can be only FunDecl or ClassDecl, no St *)
  | ExportDefaultDecl of tok (* default *) * item
  | ExportDefaultExpr of tok (* default *) * expr * sc

  | ExportNames of import_name comma_list brace * sc
  (* reexport *)
  | ReExportNamespace of tok (* * *) * (tok (* from *) * module_path) * sc
  | ReExportNames of import_name comma_list brace * 
                      (tok (* from *) * module_path) * sc
  

(* ------------------------------------------------------------------------- *)
(* Toplevel *)
(* ------------------------------------------------------------------------- *)

 and module_item = 
  | It of item
  (* es6-ext: *)
  | Import of (tok (* import *) * import * sc)
  | Export of (tok (* export *) * export)

 and program = module_item list
 (* with tarzan *)

(* ------------------------------------------------------------------------- *)
(* Any *)
(* ------------------------------------------------------------------------- *)

type any =
  | Expr of expr
  | Stmt of stmt
  | Pattern of pattern
  | Item of item
  | Program of program
 (* with tarzan *)

(*****************************************************************************)
(* Wrappers *)
(*****************************************************************************)
let unwrap = fst
let unparen (_,x,_) = x
let unbrace = unparen
let unbracket = unparen
let uncomma xs = Common.map_filter (function
  | Left e -> Some e
  | Right _info -> None
  ) xs

let info_of_name (_s, info) = info

(*****************************************************************************)
(* Abstract line *)
(*****************************************************************************)

(* When we have extended the AST to add some info about the tokens,
 * such as its line number in the file, we can not use anymore the
 * ocaml '=' operator to compare Ast elements. To overcome this problem, to
 * be able to use again '=', we just have to get rid of all those extra
 * information, to "abstract those line" (al) information.
 *)

let al_info x =
  { x with PI.token = PI.Ab }

(*****************************************************************************)
(* Views *)
(*****************************************************************************)

(* examples:
 * inline more static funcall in expr type or variable type
 *)

(*****************************************************************************)
(* Helpers, could also be put in lib_parsing.ml instead *)
(*****************************************************************************)

(* used both by Parsing_hacks_js and Parse_js *)
let fakeInfoAttach info =
  let info = PI.rewrap_str "';' (from ASI)" info in
  let pinfo = PI.token_location_of_info info in
  { PI.
    token = PI.FakeTokStr (";", Some (pinfo, -1));
    transfo = PI.NoTransfo;
  }
OCaml

Innovation. Community. Security.