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
|
(* Js_of_ocaml compiler
* http://www.ocsigen.org/js_of_ocaml/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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.
*)
open Stdlib
module Annot : sig
type t = string * Primitive.t
end
type t =
| T_NUMBER of (number_type * string)
| T_BIGINT of (bigint_type * string)
| T_STRING of (Utf8_string.t * int)
| T_IDENTIFIER of (Utf8_string.t * string)
| T_REGEXP of (Utf8_string.t * string)
(* /pattern/flags *)
(* Syntax *)
| T_LCURLY
| T_RCURLY
| T_LPAREN
| T_RPAREN
| T_LBRACKET
| T_RBRACKET
| T_SEMICOLON
| T_COMMA
| T_PERIOD
| T_ARROW
| T_ELLIPSIS
| T_AT
| T_POUND
(* Keywords *)
| T_FUNCTION
| T_IF
| T_IN
| T_INSTANCEOF
| T_RETURN
| T_SWITCH
| T_THIS
| T_THROW
| T_TRY
| T_VAR
| T_WHILE
| T_WITH
| T_CONST
| T_LET
| T_NULL
| T_FALSE
| T_TRUE
| T_BREAK
| T_CASE
| T_CATCH
| T_CONTINUE
| T_DEFAULT
| T_DO
| T_FINALLY
| T_FOR
| T_CLASS
| T_EXTENDS
| T_STATIC
| T_ELSE
| T_NEW
| T_DELETE
| T_TYPEOF
| T_VOID
| T_ENUM
| T_EXPORT
| T_IMPORT
| T_SUPER
| T_IMPLEMENTS
| T_INTERFACE
| T_PACKAGE
| T_PRIVATE
| T_PROTECTED
| T_PUBLIC
| T_YIELD
| T_DEBUGGER
| T_OF
| T_ASYNC
| T_AWAIT
| T_GET
| T_SET
(* Operators *)
| T_RSHIFT3_ASSIGN
| T_RSHIFT_ASSIGN
| T_LSHIFT_ASSIGN
| T_BIT_XOR_ASSIGN
| T_BIT_OR_ASSIGN
| T_BIT_AND_ASSIGN
| T_MOD_ASSIGN
| T_DIV_ASSIGN
| T_MULT_ASSIGN
| T_EXP_ASSIGN
| T_MINUS_ASSIGN
| T_PLUS_ASSIGN
| T_NULLISH_ASSIGN
| T_AND_ASSIGN
| T_OR_ASSIGN
| T_ASSIGN
| T_PLING_PERIOD
| T_PLING_PLING
| T_PLING
| T_COLON
| T_OR
| T_AND
| T_BIT_OR
| T_BIT_XOR
| T_BIT_AND
| T_EQUAL
| T_NOT_EQUAL
| T_STRICT_EQUAL
| T_STRICT_NOT_EQUAL
| T_LESS_THAN_EQUAL
| T_GREATER_THAN_EQUAL
| T_LESS_THAN
| T_GREATER_THAN
| T_LSHIFT
| T_RSHIFT
| T_RSHIFT3
| T_PLUS
| T_MINUS
| T_DIV
| T_MULT
| T_EXP
| T_MOD
| T_NOT
| T_BIT_NOT
| T_INCR
| T_DECR
| T_FROM
| T_TARGET
| T_META
| T_BACKQUOTE
| T_DOLLARCURLY
| T_ENCAPSED_STRING of string
| T_AS
(* Extra tokens *)
| T_ERROR of string
| T_EOF
| T_VIRTUAL_SEMICOLON
| T_VIRTUAL_SEMICOLON_DO_WHILE
| T_VIRTUAL_SEMICOLON_EXPORT_DEFAULT
| T_DECR_NB
| T_INCR_NB
| T_LPAREN_ARROW
| TAnnot of Annot.t
| TComment of string
| TCommentLineDirective of string
and number_type =
| BINARY
| LEGACY_OCTAL
| LEGACY_NON_OCTAL (* NonOctalDecimalIntegerLiteral in Annex B *)
| OCTAL
| NORMAL
and bigint_type =
| BIG_BINARY
| BIG_OCTAL
| BIG_NORMAL
type token = t
val to_string : t -> string
val to_string_extra : t -> string
val is_keyword : string -> t option
|