package diffast-langs-java-parsing
Java parser for Diff/AST
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.3.5.1.tar.gz
sha256=6971a07313d308bdfcfe165fd76c218454826fe594acfa6ab25b0e7a1c739cb5
md5=be0348ed663151930bc8ced0ca678b60
doc/src/diffast-langs-java-parsing/tokens.ml.html
Source file tokens.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
module Make (Stat : Parser_aux.STATE_T) = struct type token = | YIELD of (Ast.Loc.t) | WITH_ of (Ast.Loc.t) | WITHIN of (Ast.Loc.t) | WHILE of (Ast.Loc.t) | VOLATILE of (Ast.Loc.t) | VOID of (Ast.Loc.t) | VAR of (Ast.Loc.t) | USES of (Ast.Loc.t) | TRY of (Ast.Loc.t) | TRUE | TRANSITIVE of (Ast.Loc.t) | TRANSIENT of (Ast.Loc.t) | TO of (Ast.Loc.t) | TILDE | THROWS of (Ast.Loc.t) | THROW of (Ast.Loc.t) | THIS of (Ast.Loc.t) | TEXT_BLOCK of (string) | SYNCHRONIZED of (Ast.Loc.t) | SWITCH of (Ast.Loc.t) | SUPER of (Ast.Loc.t) | STRING_LITERAL of (string) | STRICTFP of (Ast.Loc.t) | STMT of (Ast.statement) | STATIC of (Ast.Loc.t) | STAR_EQ | STAR | SLASH_EQ | SLASH | SHORT of (Ast.Loc.t) | SEMICOLON | SEALED of (Ast.Loc.t) | RPAREN of (Ast.Loc.t) | RETURN of (Ast.Loc.t) | REQUIRES of (Ast.Loc.t) | RECORD of (Ast.Loc.t) | RBRACKET | RBRACE | QUESTION | PUBLIC of (Ast.Loc.t) | PROVIDES of (Ast.Loc.t) | PROTECTED of (Ast.Loc.t) | PRIVATE of (Ast.Loc.t) | POINTCUT of (Ast.Loc.t) | PLUS_PLUS | PLUS_EQ | PLUS | PERMITS of (Ast.Loc.t) | PERCENT_EQ | PERCENT | PACKAGE of (Ast.Loc.t) | OR_OR | OR_EQ | OR | OPENS of (Ast.Loc.t) | OPEN of (Ast.Loc.t) | NULL | NON_SEALED of (Ast.Loc.t) | NEW of (Ast.Loc.t) | NATIVE of (Ast.Loc.t) | MODULE of (Ast.Loc.t) | MINUS_MINUS | MINUS_GT__CASE | MINUS_GT | MINUS_EQ | MINUS | MARKER of (string) | LT_LT_EQ | LT_LT | LT_EQ | LT of (Ast.Loc.t) | LPAREN__LAMBDA of (Ast.Loc.t) | LPAREN of (Ast.Loc.t) | LONG of (Ast.Loc.t) | LBRACKET | LBRACE | INTERFACE of (Ast.Loc.t) | INTEGER_LITERAL of (string) | INT of (Ast.Loc.t) | INSTANCEOF of (Ast.Loc.t) | IMPORT of (Ast.Loc.t) | IMPLEMENTS of (Ast.Loc.t) | IF of (Ast.Loc.t) | IDENTIFIER of (Ast.Loc.t * string) | HAT_EQ | HAT | GT_GT_GT_EQ | GT_GT_GT | GT_GT_EQ | GT_GT | GT_EQ | GT_7 | GT | GOTO of (Ast.Loc.t) | FOR of (Ast.Loc.t) | FLOATING_POINT_LITERAL of (string) | FLOAT of (Ast.Loc.t) | FINALLY of (Ast.Loc.t) | FINAL of (Ast.Loc.t) | FALSE | EXTENDS of (Ast.Loc.t) | EXPORTS of (Ast.Loc.t) | EXCLAM_EQ | EXCLAM | ERROR_STMT of (string) | ERROR_MOD of (string) | ERROR of (string) | EQ_EQ | EQ | EOP | EOF | ENUM of (Ast.Loc.t) | ELSE of (Ast.Loc.t) | ELLIPSIS | DOUBLE of (Ast.Loc.t) | DOT_DOT | DOT | DO of (Ast.Loc.t) | DEFAULT__COLON of (Ast.Loc.t) | DEFAULT of (Ast.Loc.t) | DECLARE of (Ast.Loc.t) | CONTINUE of (Ast.Loc.t) | CONST of (Ast.Loc.t) | COMMA | COLON_COLON | COLON | CLASS of (Ast.Loc.t) | CHARACTER_LITERAL of (string) | CHAR of (Ast.Loc.t) | CATCH of (Ast.Loc.t) | CASE of (Ast.Loc.t) | BYTE of (Ast.Loc.t) | BREAK of (Ast.Loc.t) | BOOLEAN of (Ast.Loc.t) | BLOCK_STMT of (Ast.block_statement) | AT__INTERFACE of (Ast.Loc.t) | AT of (Ast.Loc.t) | ASSERT of (Ast.Loc.t) | ASPECT of (Ast.Loc.t) | AND_EQ | AND_AND | AND | ABSTRACT of (Ast.Loc.t) module MenhirInterpreter = struct type _ terminal = | T_error : unit terminal | T_YIELD : (Ast.Loc.t) terminal | T_WITH_ : (Ast.Loc.t) terminal | T_WITHIN : (Ast.Loc.t) terminal | T_WHILE : (Ast.Loc.t) terminal | T_VOLATILE : (Ast.Loc.t) terminal | T_VOID : (Ast.Loc.t) terminal | T_VAR : (Ast.Loc.t) terminal | T_USES : (Ast.Loc.t) terminal | T_TRY : (Ast.Loc.t) terminal | T_TRUE : unit terminal | T_TRANSITIVE : (Ast.Loc.t) terminal | T_TRANSIENT : (Ast.Loc.t) terminal | T_TO : (Ast.Loc.t) terminal | T_TILDE : unit terminal | T_THROWS : (Ast.Loc.t) terminal | T_THROW : (Ast.Loc.t) terminal | T_THIS : (Ast.Loc.t) terminal | T_TEXT_BLOCK : (string) terminal | T_SYNCHRONIZED : (Ast.Loc.t) terminal | T_SWITCH : (Ast.Loc.t) terminal | T_SUPER : (Ast.Loc.t) terminal | T_STRING_LITERAL : (string) terminal | T_STRICTFP : (Ast.Loc.t) terminal | T_STMT : (Ast.statement) terminal | T_STATIC : (Ast.Loc.t) terminal | T_STAR_EQ : unit terminal | T_STAR : unit terminal | T_SLASH_EQ : unit terminal | T_SLASH : unit terminal | T_SHORT : (Ast.Loc.t) terminal | T_SEMICOLON : unit terminal | T_SEALED : (Ast.Loc.t) terminal | T_RPAREN : (Ast.Loc.t) terminal | T_RETURN : (Ast.Loc.t) terminal | T_REQUIRES : (Ast.Loc.t) terminal | T_RECORD : (Ast.Loc.t) terminal | T_RBRACKET : unit terminal | T_RBRACE : unit terminal | T_QUESTION : unit terminal | T_PUBLIC : (Ast.Loc.t) terminal | T_PROVIDES : (Ast.Loc.t) terminal | T_PROTECTED : (Ast.Loc.t) terminal | T_PRIVATE : (Ast.Loc.t) terminal | T_POINTCUT : (Ast.Loc.t) terminal | T_PLUS_PLUS : unit terminal | T_PLUS_EQ : unit terminal | T_PLUS : unit terminal | T_PERMITS : (Ast.Loc.t) terminal | T_PERCENT_EQ : unit terminal | T_PERCENT : unit terminal | T_PACKAGE : (Ast.Loc.t) terminal | T_OR_OR : unit terminal | T_OR_EQ : unit terminal | T_OR : unit terminal | T_OPENS : (Ast.Loc.t) terminal | T_OPEN : (Ast.Loc.t) terminal | T_NULL : unit terminal | T_NON_SEALED : (Ast.Loc.t) terminal | T_NEW : (Ast.Loc.t) terminal | T_NATIVE : (Ast.Loc.t) terminal | T_MODULE : (Ast.Loc.t) terminal | T_MINUS_MINUS : unit terminal | T_MINUS_GT__CASE : unit terminal | T_MINUS_GT : unit terminal | T_MINUS_EQ : unit terminal | T_MINUS : unit terminal | T_MARKER : (string) terminal | T_LT_LT_EQ : unit terminal | T_LT_LT : unit terminal | T_LT_EQ : unit terminal | T_LT : (Ast.Loc.t) terminal | T_LPAREN__LAMBDA : (Ast.Loc.t) terminal | T_LPAREN : (Ast.Loc.t) terminal | T_LONG : (Ast.Loc.t) terminal | T_LBRACKET : unit terminal | T_LBRACE : unit terminal | T_INTERFACE : (Ast.Loc.t) terminal | T_INTEGER_LITERAL : (string) terminal | T_INT : (Ast.Loc.t) terminal | T_INSTANCEOF : (Ast.Loc.t) terminal | T_IMPORT : (Ast.Loc.t) terminal | T_IMPLEMENTS : (Ast.Loc.t) terminal | T_IF : (Ast.Loc.t) terminal | T_IDENTIFIER : (Ast.Loc.t * string) terminal | T_HAT_EQ : unit terminal | T_HAT : unit terminal | T_GT_GT_GT_EQ : unit terminal | T_GT_GT_GT : unit terminal | T_GT_GT_EQ : unit terminal | T_GT_GT : unit terminal | T_GT_EQ : unit terminal | T_GT_7 : unit terminal | T_GT : unit terminal | T_GOTO : (Ast.Loc.t) terminal | T_FOR : (Ast.Loc.t) terminal | T_FLOATING_POINT_LITERAL : (string) terminal | T_FLOAT : (Ast.Loc.t) terminal | T_FINALLY : (Ast.Loc.t) terminal | T_FINAL : (Ast.Loc.t) terminal | T_FALSE : unit terminal | T_EXTENDS : (Ast.Loc.t) terminal | T_EXPORTS : (Ast.Loc.t) terminal | T_EXCLAM_EQ : unit terminal | T_EXCLAM : unit terminal | T_ERROR_STMT : (string) terminal | T_ERROR_MOD : (string) terminal | T_ERROR : (string) terminal | T_EQ_EQ : unit terminal | T_EQ : unit terminal | T_EOP : unit terminal | T_EOF : unit terminal | T_ENUM : (Ast.Loc.t) terminal | T_ELSE : (Ast.Loc.t) terminal | T_ELLIPSIS : unit terminal | T_DOUBLE : (Ast.Loc.t) terminal | T_DOT_DOT : unit terminal | T_DOT : unit terminal | T_DO : (Ast.Loc.t) terminal | T_DEFAULT__COLON : (Ast.Loc.t) terminal | T_DEFAULT : (Ast.Loc.t) terminal | T_DECLARE : (Ast.Loc.t) terminal | T_CONTINUE : (Ast.Loc.t) terminal | T_CONST : (Ast.Loc.t) terminal | T_COMMA : unit terminal | T_COLON_COLON : unit terminal | T_COLON : unit terminal | T_CLASS : (Ast.Loc.t) terminal | T_CHARACTER_LITERAL : (string) terminal | T_CHAR : (Ast.Loc.t) terminal | T_CATCH : (Ast.Loc.t) terminal | T_CASE : (Ast.Loc.t) terminal | T_BYTE : (Ast.Loc.t) terminal | T_BREAK : (Ast.Loc.t) terminal | T_BOOLEAN : (Ast.Loc.t) terminal | T_BLOCK_STMT : (Ast.block_statement) terminal | T_AT__INTERFACE : (Ast.Loc.t) terminal | T_AT : (Ast.Loc.t) terminal | T_ASSERT : (Ast.Loc.t) terminal | T_ASPECT : (Ast.Loc.t) terminal | T_AND_EQ : unit terminal | T_AND_AND : unit terminal | T_AND : unit terminal | T_ABSTRACT : (Ast.Loc.t) terminal end end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>