OLD | NEW |
(Empty) | |
| 1 # |
| 2 # AFL dictionary for JavaScript |
| 3 # ----------------------------- |
| 4 # |
| 5 # Contains basic reserved keywords and syntax building blocks. |
| 6 # |
| 7 # Created by Michal Zalewski <lcamtuf@google.com> |
| 8 # |
| 9 |
| 10 keyword_arguments="arguments" |
| 11 keyword_break="break" |
| 12 keyword_case="case" |
| 13 keyword_catch="catch" |
| 14 keyword_const="const" |
| 15 keyword_continue="continue" |
| 16 keyword_debugger="debugger" |
| 17 keyword_decodeURI="decodeURI" |
| 18 keyword_default="default" |
| 19 keyword_delete="delete" |
| 20 keyword_do="do" |
| 21 keyword_else="else" |
| 22 keyword_escape="escape" |
| 23 keyword_eval="eval" |
| 24 keyword_export="export" |
| 25 keyword_finally="finally" |
| 26 keyword_for="for (a=0;a<2;a++)" |
| 27 keyword_function="function" |
| 28 keyword_if="if" |
| 29 keyword_in="in" |
| 30 keyword_instanceof="instanceof" |
| 31 keyword_isNaN="isNaN" |
| 32 keyword_let="let" |
| 33 keyword_new="new" |
| 34 keyword_parseInt="parseInt" |
| 35 keyword_return="return" |
| 36 keyword_super="super" |
| 37 keyword_switch="switch" |
| 38 keyword_this="this" |
| 39 keyword_throw="throw" |
| 40 keyword_try="try" |
| 41 keyword_typeof="typeof" |
| 42 keyword_var="var" |
| 43 keyword_void="void" |
| 44 keyword_while="while" |
| 45 keyword_with="with" |
| 46 |
| 47 misc_1=" 1" |
| 48 misc_a="a" |
| 49 misc_array=" [1]" |
| 50 misc_assign=" a=1" |
| 51 misc_code_block=" {1}" |
| 52 misc_colon_num=" 1:" |
| 53 misc_colon_string=" 'a':" |
| 54 misc_comma=" ," |
| 55 misc_comment_block=" /* */" |
| 56 misc_comment_line=" //" |
| 57 misc_cond=" 1?2:3" |
| 58 misc_dec=" --" |
| 59 misc_div=" /" |
| 60 misc_equals=" =" |
| 61 misc_fn=" a()" |
| 62 misc_identical=" ===" |
| 63 misc_inc=" ++" |
| 64 misc_minus=" -" |
| 65 misc_modulo=" %" |
| 66 misc_parentheses=" ()" |
| 67 misc_parentheses_1=" (1)" |
| 68 misc_parentheses_1x4=" (1,1,1,1)" |
| 69 misc_parentheses_a=" (a)" |
| 70 misc_period="." |
| 71 misc_plus=" +" |
| 72 misc_plus_assign=" +=" |
| 73 misc_regex=" /a/g" |
| 74 misc_rol=" <<<" |
| 75 misc_semicolon=" ;" |
| 76 misc_serialized_object=" {'a': 1}" |
| 77 misc_string=" 'a'" |
| 78 misc_unicode=" '\\u0001'" |
| 79 misc_shl=" <<" |
| 80 misc_shr=" >>" |
| 81 misc_sae=" >>>" |
| 82 misc_bit_or=" |" |
| 83 misc_bit_and=" &" |
| 84 misc_bit_xor=" ^" |
| 85 misc_bit_not=" ~" |
| 86 |
| 87 object_Array=" Array" |
| 88 object_Boolean=" Boolean" |
| 89 object_Date=" Date" |
| 90 object_Function=" Function" |
| 91 object_Infinity=" Infinity" |
| 92 object_Int8Array=" Int8Array" |
| 93 object_Math=" Math" |
| 94 object_NaN=" NaN" |
| 95 object_Number=" Number" |
| 96 object_Object=" Object" |
| 97 object_RegExp=" RegExp" |
| 98 object_String=" String" |
| 99 object_Symbol=" Symbol" |
| 100 object_false=" false" |
| 101 object_null=" null" |
| 102 object_true=" true" |
| 103 |
| 104 prop_charAt=".charAt" |
| 105 prop_concat=".concat" |
| 106 prop_constructor=".constructor" |
| 107 prop_destructor=".destructor" |
| 108 prop_length=".length" |
| 109 prop_match=".match" |
| 110 prop_proto=".__proto__" |
| 111 prop_prototype=".prototype" |
| 112 prop_slice=".slice" |
| 113 prop_toCode=".toCode" |
| 114 prop_toString=".toString" |
| 115 prop_valueOf=".valueOf" |
| 116 |
| 117 |
| 118 # Dictionary elements below have been generated automatically. |
| 119 "all" |
| 120 "ECMA-404." |
| 121 "contexts." |
| 122 "Date.prototype.setHours" |
| 123 "IsConstructor" |
| 124 "forbidden" |
| 125 "dynamic" |
| 126 "month" |
| 127 "(exclusive)" |
| 128 "(OOPSLA" |
| 129 "arguments)" |
| 130 "consists" |
| 131 "expressions" |
| 132 "(which" |
| 133 "(in" |
| 134 "WeakSet" |
| 135 "whose" |
| 136 "iterator" |
| 137 "PATENT" |
| 138 "(for" |
| 139 "equivalence" |
| 140 "including" |
| 141 "to" |
| 142 "tail" |
| 143 "program" |
| 144 "under" |
| 145 "immutable" |
| 146 "started" |
| 147 "@" |
| 148 "digit" |
| 149 "returned" |
| 150 "very" |
| 151 "activation" |
| 152 "\x27UA-32577963-1\x27]);" |
| 153 "Classes" |
| 154 "every" |
| 155 "updates" |
| 156 "U+200C" |
| 157 "(URI):" |
| 158 "condition" |
| 159 "(QUOTATION" |
| 160 "exponential" |
| 161 "Reference" |
| 162 "EXPRESS" |
| 163 "list" |
| 164 "prefix" |
| 165 "non-extensible" |
| 166 "large" |
| 167 "INDIRECT," |
| 168 "NY," |
| 169 "enclosing" |
| 170 "small" |
| 171 "abbreviated" |
| 172 "built-in" |
| 173 "range." |
| 174 "BUSINESS" |
| 175 "C++," |
| 176 "translating" |
| 177 "surrounding" |
| 178 "second" |
| 179 "Version" |
| 180 "pass" |
| 181 "UTF-8." |
| 182 "invariant" |
| 183 "(LINE" |
| 184 "implemented" |
| 185 "INFRINGE" |
| 186 "Z." |
| 187 "Latin" |
| 188 "incompatible" |
| 189 "section" |
| 190 "selected" |
| 191 "supplied" |
| 192 "decoding" |
| 193 "version" |
| 194 "run" |
| 195 "above" |
| 196 "Int8Array" |
| 197 "method" |
| 198 "\x22BSD" |
| 199 "full" |
| 200 "escaping" |
| 201 "Undefined" |
| 202 "compilation" |
| 203 "never" |
| 204 "component" |
| 205 "here" |
| 206 "ranges" |
| 207 "reported" |
| 208 "U+007D" |
| 209 "operations." |
| 210 "active" |
| 211 "path" |
| 212 "placeholder" |
| 213 "8601:2004(E)" |
| 214 "search" |
| 215 "property" |
| 216 "U+10FFFF," |
| 217 "changed" |
| 218 "allows" |
| 219 "(see" |
| 220 "SOLIDUS)" |
| 221 "prior" |
| 222 "real" |
| 223 "successors" |
| 224 "error," |
| 225 "error." |
| 226 "proxy" |
| 227 "prints" |
| 228 "via" |
| 229 "shorthand" |
| 230 "divide" |
| 231 "replace" |
| 232 "Object.defineProperties" |
| 233 "Instance" |
| 234 "TO" |
| 235 "S," |
| 236 "SUCH" |
| 237 "total" |
| 238 "unit" |
| 239 "languages" |
| 240 "executable" |
| 241 "takes" |
| 242 "would" |
| 243 "U+003A" |
| 244 "contains" |
| 245 "negative" |
| 246 "URI;" |
| 247 "call" |
| 248 "JTC" |
| 249 "6" |
| 250 "type" |
| 251 "until" |
| 252 "more" |
| 253 "Date.prototype.setMinutes" |
| 254 "GOODS" |
| 255 "EXEMPLARY," |
| 256 "expose" |
| 257 "SIGN)" |
| 258 "flag" |
| 259 "U+000A" |
| 260 "V" |
| 261 "known" |
| 262 "Representation" |
| 263 "Alphabetic" |
| 264 "hold" |
| 265 "finalization" |
| 266 "must" |
| 267 "Array.prototype" |
| 268 "PROVIDED" |
| 269 "none" |
| 270 "word" |
| 271 "U+000D" |
| 272 "hour" |
| 273 "SV" |
| 274 "(REVERSE" |
| 275 "paragraph" |
| 276 "ms" |
| 277 "v" |
| 278 "exceptions" |
| 279 "COMMA," |
| 280 "root" |
| 281 "could" |
| 282 "defer" |
| 283 "compare" |
| 284 "type." |
| 285 "(with" |
| 286 "JavaScript" |
| 287 "states" |
| 288 "minimum" |
| 289 "numbers" |
| 290 "keep" |
| 291 "SEPARATOR)," |
| 292 "absolute" |
| 293 "information" |
| 294 "end" |
| 295 "recursive" |
| 296 "Format" |
| 297 "provide" |
| 298 "DataView" |
| 299 "HOWEVER" |
| 300 "maps" |
| 301 "reject" |
| 302 "Promise" |
| 303 "IMPLIED" |
| 304 "<CR>" |
| 305 "A" |
| 306 "description" |
| 307 "binary" |
| 308 "Arrays" |
| 309 "typed" |
| 310 "after" |
| 311 "variant" |
| 312 "mapping" |
| 313 "U+0024" |
| 314 "hoisting" |
| 315 "reflect" |
| 316 "SPECIAL," |
| 317 "types" |
| 318 "All" |
| 319 "short" |
| 320 "(CHARACTER" |
| 321 "postfix" |
| 322 "ID_Start" |
| 323 "map," |
| 324 "blocks." |
| 325 ")" |
| 326 "LICENSING" |
| 327 "QUOTATION" |
| 328 "order" |
| 329 "DAMAGES" |
| 330 "operations" |
| 331 "executed" |
| 332 "interpretation" |
| 333 "V," |
| 334 "over" |
| 335 "NO-BREAK" |
| 336 "expects" |
| 337 "through" |
| 338 "LINE" |
| 339 "its" |
| 340 "before" |
| 341 "byteLength" |
| 342 "style" |
| 343 "20" |
| 344 "(V," |
| 345 "CreateIterResultObject" |
| 346 "," |
| 347 "writing" |
| 348 "detected" |
| 349 "verifies" |
| 350 "SUBSTITUTE" |
| 351 "might" |
| 352 "then" |
| 353 "them" |
| 354 "skipped" |
| 355 "combination" |
| 356 "strings." |
| 357 "URI" |
| 358 "number" |
| 359 "of:" |
| 360 "nested" |
| 361 "operation." |
| 362 "[~U]" |
| 363 "always" |
| 364 "decimal" |
| 365 "Date.prototype.setMonth" |
| 366 "token" |
| 367 "API" |
| 368 "twice." |
| 369 "arrow" |
| 370 "each" |
| 371 "types." |
| 372 "side" |
| 373 "(but" |
| 374 "GetSuperConstructor" |
| 375 "directly" |
| 376 "Zone" |
| 377 "UTC" |
| 378 "FITNESS" |
| 379 "numeric" |
| 380 "expect" |
| 381 "RegExp" |
| 382 "loops" |
| 383 "operation" |
| 384 "scope)" |
| 385 "Type" |
| 386 "Reflect.ownKeys" |
| 387 "More" |
| 388 "WILL" |
| 389 "by" |
| 390 "mark-up" |
| 391 "restricted" |
| 392 "since" |
| 393 "BMP" |
| 394 "7" |
| 395 "newly" |
| 396 "Super" |
| 397 "Class" |
| 398 "Must" |
| 399 "loop." |
| 400 "Extension" |
| 401 "found" |
| 402 "free" |
| 403 "standard" |
| 404 "reason" |
| 405 "base" |
| 406 "byteOffset" |
| 407 "Constructor" |
| 408 "put" |
| 409 "Block" |
| 410 "thrown" |
| 411 "definition" |
| 412 "pairs" |
| 413 "unresolved" |
| 414 "created" |
| 415 "starts" |
| 416 "filter" |
| 417 "uses" |
| 418 "assign" |
| 419 "already" |
| 420 "features" |
| 421 ">>" |
| 422 "encoding" |
| 423 "SYMBOL" |
| 424 "TC39" |
| 425 "SameValue" |
| 426 "primary" |
| 427 "system" |
| 428 "Maps" |
| 429 "Handler" |
| 430 "done" |
| 431 "notify" |
| 432 "another" |
| 433 "RETURN)," |
| 434 "SMALL" |
| 435 "Date.prototype.setSeconds" |
| 436 "script" |
| 437 "top" |
| 438 "least" |
| 439 "ToString" |
| 440 "needed" |
| 441 "SymbolDescriptiveString" |
| 442 "too" |
| 443 "statement" |
| 444 "store" |
| 445 "passed" |
| 446 "Language" |
| 447 "OrdinaryHasInstance" |
| 448 "Named" |
| 449 "immediate" |
| 450 "direct" |
| 451 "tokens" |
| 452 "execution." |
| 453 "BRACKET)." |
| 454 "translation" |
| 455 "to:" |
| 456 "kind" |
| 457 "Code" |
| 458 "keyword" |
| 459 "double" |
| 460 "enabled" |
| 461 "zero" |
| 462 "normalizing" |
| 463 "Reflect.getOwnPropertyDescriptor" |
| 464 "(NOTE" |
| 465 "minus" |
| 466 "debugging" |
| 467 "script." |
| 468 "constructors" |
| 469 "bitwise" |
| 470 "randomly" |
| 471 "UTC," |
| 472 "Reflect.has" |
| 473 "initialized" |
| 474 "U+005D" |
| 475 "null" |
| 476 "ARISING" |
| 477 "UTF-8," |
| 478 "contents" |
| 479 "option" |
| 480 "forced" |
| 481 "Power" |
| 482 "-" |
| 483 "eagerly" |
| 484 "indexes" |
| 485 "also" |
| 486 "internal" |
| 487 "(LEFT" |
| 488 "Date.prototype.setYear" |
| 489 "ARE" |
| 490 "REGARDING" |
| 491 "added" |
| 492 "object" |
| 493 "most" |
| 494 "optimized" |
| 495 "regular" |
| 496 "rejected" |
| 497 "letter" |
| 498 "scripts" |
| 499 "Date.prototype.setDate" |
| 500 "The" |
| 501 "<ZWNJ>" |
| 502 "brackets" |
| 503 "flow" |
| 504 "traditional" |
| 505 "Single" |
| 506 "Boolean" |
| 507 "place" |
| 508 "parenthesis" |
| 509 "Native" |
| 510 "+" |
| 511 "heuristics" |
| 512 "radix" |
| 513 "SyntaxError" |
| 514 "(N," |
| 515 "syntax" |
| 516 "attempts" |
| 517 "O," |
| 518 "relation" |
| 519 "find" |
| 520 "(COMMA)." |
| 521 "access" |
| 522 "(COMMA)," |
| 523 "parameters" |
| 524 "THAT" |
| 525 "HTML" |
| 526 "8" |
| 527 "exports" |
| 528 "dependent" |
| 529 "account" |
| 530 "Value" |
| 531 "(P)" |
| 532 "ToLength" |
| 533 "non-integer" |
| 534 "report" |
| 535 "during" |
| 536 "target" |
| 537 "runs" |
| 538 "resolve" |
| 539 "THIS" |
| 540 "fields" |
| 541 "bytes" |
| 542 "remove" |
| 543 "twice" |
| 544 "common" |
| 545 "CET," |
| 546 "parameter," |
| 547 "parameter." |
| 548 "automatic" |
| 549 "ToObject" |
| 550 "set" |
| 551 "reference" |
| 552 "locale" |
| 553 "testing" |
| 554 "<ZWNBSP>" |
| 555 "Tail" |
| 556 "are" |
| 557 "arg" |
| 558 "hash" |
| 559 "(CARRIAGE" |
| 560 "stringify" |
| 561 "said" |
| 562 "currently" |
| 563 "BUT" |
| 564 "future" |
| 565 "various" |
| 566 "OWNERSHIP" |
| 567 "consecutive" |
| 568 "conditions" |
| 569 "available" |
| 570 "C" |
| 571 "1))" |
| 572 "creating" |
| 573 "missing" |
| 574 "modify" |
| 575 "weak" |
| 576 "zone," |
| 577 "PROCUREMENT" |
| 578 "succeed" |
| 579 "IS\x22" |
| 580 "interface" |
| 581 "IMPLEMENT" |
| 582 "AND" |
| 583 "both" |
| 584 "c" |
| 585 "TypeError" |
| 586 "last" |
| 587 "SHALL" |
| 588 "false," |
| 589 "against" |
| 590 "became" |
| 591 "PURPOSE" |
| 592 "context" |
| 593 "receiver" |
| 594 "exceeds" |
| 595 "(MV)," |
| 596 "finds" |
| 597 "WARRANTY" |
| 598 "point" |
| 599 "header" |
| 600 "globals" |
| 601 "written" |
| 602 "slots" |
| 603 "Method" |
| 604 "iterable" |
| 605 "Wide" |
| 606 "Date.prototype.toDateString" |
| 607 "C," |
| 608 "format," |
| 609 "create" |
| 610 "Processing" |
| 611 "(SV," |
| 612 "been" |
| 613 "accessor" |
| 614 "Early" |
| 615 "TORT" |
| 616 "JSON" |
| 617 "UTF-16." |
| 618 "basic" |
| 619 "expected" |
| 620 "C0" |
| 621 "empty" |
| 622 "0000" |
| 623 "Date.prototype.setUTCMilliseconds" |
| 624 "CLEF)." |
| 625 "precision" |
| 626 "N" |
| 627 "TV," |
| 628 "assigning" |
| 629 "exception" |
| 630 "Date.prototype.setMilliseconds" |
| 631 "frozen" |
| 632 "Uint16Array" |
| 633 "deferred" |
| 634 "optimization" |
| 635 "replaced" |
| 636 "Object.defineProperty" |
| 637 "error" |
| 638 "White_Space" |
| 639 "EVENT" |
| 640 "loop" |
| 641 "resolved" |
| 642 "USE," |
| 643 "Both" |
| 644 "is" |
| 645 "binding" |
| 646 "it" |
| 647 "encountered" |
| 648 "itself" |
| 649 "[[Handler]]" |
| 650 "containing" |
| 651 "U+005F" |
| 652 "ISO/IEC" |
| 653 "Boolean.prototype.toString" |
| 654 "flag." |
| 655 "make" |
| 656 "NaN" |
| 657 "shorter" |
| 658 "(PARAGRAPH" |
| 659 "(MV," |
| 660 "split" |
| 661 "9" |
| 662 "AT&T" |
| 663 "U+005B" |
| 664 "(TV)" |
| 665 "used" |
| 666 "keys" |
| 667 "assignment" |
| 668 "LIABILITY," |
| 669 "NOT" |
| 670 "levels" |
| 671 "moving" |
| 672 "user" |
| 673 "characters" |
| 674 "CONDUCT" |
| 675 "stack" |
| 676 "normalization" |
| 677 "early" |
| 678 "lower" |
| 679 "surrogate" |
| 680 "changes" |
| 681 "ZERO)," |
| 682 "flags" |
| 683 "Names" |
| 684 "y" |
| 685 "entry" |
| 686 "the" |
| 687 "encodeURIComponent" |
| 688 "ECMA" |
| 689 "left" |
| 690 "construct" |
| 691 "quoted" |
| 692 "sentence" |
| 693 "||" |
| 694 "overflows" |
| 695 "SERVICES;" |
| 696 "(F," |
| 697 "Inherited" |
| 698 "followed" |
| 699 "32" |
| 700 "yet" |
| 701 "previous" |
| 702 "tables" |
| 703 "Assignment" |
| 704 "LEFT-TO-RIGHT" |
| 705 "character" |
| 706 "source" |
| 707 "n" |
| 708 "collections" |
| 709 "found," |
| 710 "input" |
| 711 "has" |
| 712 "remaining" |
| 713 "..." |
| 714 "format" |
| 715 "lexically" |
| 716 "big" |
| 717 "(O," |
| 718 "possible" |
| 719 "marked" |
| 720 "integer" |
| 721 "bit" |
| 722 "enumerable" |
| 723 "formal" |
| 724 "ON" |
| 725 "d" |
| 726 "OF" |
| 727 "ignore" |
| 728 "steps" |
| 729 "Date.prototype.toISOString" |
| 730 "table." |
| 731 "OR" |
| 732 "right" |
| 733 "old" |
| 734 "Reflect.set" |
| 735 "<PS>" |
| 736 "creation" |
| 737 "back" |
| 738 "9999" |
| 739 "Numeric" |
| 740 "apply" |
| 741 "indirect" |
| 742 "encodeURI" |
| 743 "sourceText" |
| 744 "String" |
| 745 "for" |
| 746 "notification" |
| 747 "subclass" |
| 748 "<LF>" |
| 749 "track" |
| 750 "Let" |
| 751 "eliminate" |
| 752 "either" |
| 753 "be" |
| 754 "<LS>" |
| 755 "algorithmic" |
| 756 "Calls" |
| 757 "processing" |
| 758 "O" |
| 759 "step" |
| 760 "RIGHT-TO-LEFT" |
| 761 "ToNumber" |
| 762 "BMP." |
| 763 "method." |
| 764 "from" |
| 765 "Property" |
| 766 "properties" |
| 767 "<ZWJ>," |
| 768 "Abstract" |
| 769 "Argument" |
| 770 "range" |
| 771 "extensions" |
| 772 "value." |
| 773 "runtime" |
| 774 "automatically" |
| 775 "Common" |
| 776 "IANA" |
| 777 "primitive" |
| 778 "statements" |
| 779 "constructor." |
| 780 "garbage" |
| 781 "CAUSED" |
| 782 "into" |
| 783 "within" |
| 784 "bound" |
| 785 "ACM" |
| 786 "parsing" |
| 787 "Literal" |
| 788 "Java" |
| 789 "Reflect.get" |
| 790 "IsRegExp" |
| 791 "32-bit" |
| 792 "U+005C" |
| 793 "Keys" |
| 794 "intrinsic" |
| 795 "support" |
| 796 "initial" |
| 797 "handles" |
| 798 "long" |
| 799 "ReferenceError" |
| 800 "RangeError" |
| 801 "array." |
| 802 "Variable" |
| 803 "perform" |
| 804 "analyze" |
| 805 "was" |
| 806 "(i.e." |
| 807 "form" |
| 808 "memory" |
| 809 "failure" |
| 810 "decodeURIComponent" |
| 811 "CONTRACT," |
| 812 "statement." |
| 813 "objects." |
| 814 "true" |
| 815 "objects)" |
| 816 "Left" |
| 817 "arrays" |
| 818 "inside" |
| 819 "caller" |
| 820 "maximum" |
| 821 "...," |
| 822 "annotations" |
| 823 "LEFT" |
| 824 "called" |
| 825 "constant" |
| 826 "defined" |
| 827 "Deseret" |
| 828 "iterator," |
| 829 "To" |
| 830 "single" |
| 831 "Arguments" |
| 832 "floating" |
| 833 "check" |
| 834 "Map" |
| 835 "Only" |
| 836 "no" |
| 837 "TV" |
| 838 "binding." |
| 839 "when" |
| 840 "Possible" |
| 841 "invalid" |
| 842 "A." |
| 843 "application" |
| 844 "points" |
| 845 "Proxy" |
| 846 "Scripts" |
| 847 "test" |
| 848 "Reflect.isExtensible" |
| 849 "arithmetic" |
| 850 "node" |
| 851 "elements" |
| 852 "update" |
| 853 "prepared" |
| 854 "class" |
| 855 "AT" |
| 856 "variable" |
| 857 "structure" |
| 858 "for-in" |
| 859 "required" |
| 860 "modules" |
| 861 "An" |
| 862 "NOTE" |
| 863 "logical" |
| 864 "time" |
| 865 "PROFITS;" |
| 866 "code)" |
| 867 "requires" |
| 868 "CreateDataProperty" |
| 869 "non-writable" |
| 870 "once" |
| 871 "code" |
| 872 "partial" |
| 873 "FEED)," |
| 874 "chain" |
| 875 "FEED)." |
| 876 "(MUSICAL" |
| 877 "global" |
| 878 "existing" |
| 879 "WIDTH" |
| 880 "signatures" |
| 881 "per" |
| 882 "computation" |
| 883 "SOLIDUS)," |
| 884 "U+017F" |
| 885 "CLEF" |
| 886 "millisecond" |
| 887 "aligned" |
| 888 "U+007B" |
| 889 "zone" |
| 890 "default," |
| 891 "Object" |
| 892 "environment" |
| 893 "0" |
| 894 "Array.prototype.concat" |
| 895 "stable" |
| 896 "include" |
| 897 "resources" |
| 898 "uninitialized" |
| 899 "division" |
| 900 "string" |
| 901 "LOSS" |
| 902 "(LATIN" |
| 903 "(INCLUDING," |
| 904 "Tagged" |
| 905 "Keyed" |
| 906 "P" |
| 907 "ObjectDefineProperties" |
| 908 "anonymous" |
| 909 "entries" |
| 910 "specific" |
| 911 "minute" |
| 912 "level" |
| 913 "did" |
| 914 "positions" |
| 915 "Global" |
| 916 "EvalError" |
| 917 "round" |
| 918 "Canonical" |
| 919 "prevent" |
| 920 "CODE" |
| 921 "HTTP" |
| 922 "INFORMATION" |
| 923 "M," |
| 924 "M." |
| 925 "object." |
| 926 "initializer" |
| 927 "non-strict" |
| 928 "manipulating" |
| 929 "Date.prototype.setUTCMinutes" |
| 930 "index" |
| 931 "adds" |
| 932 "appear" |
| 933 "TO," |
| 934 "MUSICAL" |
| 935 "current" |
| 936 "Float64Array" |
| 937 "lazily" |
| 938 "template" |
| 939 "shared" |
| 940 ";" |
| 941 "filled" |
| 942 "body" |
| 943 "(SOLIDUS)" |
| 944 "U+2028" |
| 945 "U+2029" |
| 946 "Descriptor" |
| 947 "objects" |
| 948 "(FORM" |
| 949 "[" |
| 950 "UTF-16," |
| 951 "implicit" |
| 952 "change" |
| 953 "convert" |
| 954 "\x22AS" |
| 955 "shift" |
| 956 "31" |
| 957 "Date.prototype.setUTCSeconds" |
| 958 "queue" |
| 959 "MV" |
| 960 "weekday" |
| 961 "(MV)" |
| 962 "{" |
| 963 "Null" |
| 964 "named" |
| 965 "tasks" |
| 966 "GetOwnPropertyKeys" |
| 967 "extra" |
| 968 "When" |
| 969 "Construct" |
| 970 "modifying" |
| 971 "Languages" |
| 972 "names" |
| 973 "(DIGIT" |
| 974 "marker" |
| 975 "Import" |
| 976 "bindings" |
| 977 "use" |
| 978 "additive" |
| 979 "handled" |
| 980 "&" |
| 981 "illegal" |
| 982 "value," |
| 983 "value)" |
| 984 "next" |
| 985 "few" |
| 986 "duplicate" |
| 987 "handler" |
| 988 "Date.prototype.setUTCFullYear" |
| 989 "attribute" |
| 990 "scope" |
| 991 "String.prototype" |
| 992 "F" |
| 993 "Default" |
| 994 "trail" |
| 995 "Time" |
| 996 "cases" |
| 997 "ID_Continue" |
| 998 "\x22CODE\x22," |
| 999 "NON-JOINER)" |
| 1000 "lowercase" |
| 1001 "RIGHTS" |
| 1002 "ObjectCreate" |
| 1003 "modified" |
| 1004 "MARK" |
| 1005 "descriptor" |
| 1006 "tag" |
| 1007 "values" |
| 1008 "can" |
| 1009 "executor" |
| 1010 "following" |
| 1011 "meet" |
| 1012 "detached" |
| 1013 "F," |
| 1014 "control" |
| 1015 "FTP)" |
| 1016 "reserved" |
| 1017 "stream" |
| 1018 "escapes" |
| 1019 "process" |
| 1020 "lock" |
| 1021 "escaped" |
| 1022 "incremental" |
| 1023 "UTF-8" |
| 1024 "allowed" |
| 1025 "unhandled" |
| 1026 "block." |
| 1027 "for-of" |
| 1028 "requirements" |
| 1029 "UTF-32" |
| 1030 "means" |
| 1031 "write" |
| 1032 "INTERNATIONAL" |
| 1033 "instead" |
| 1034 "WARRANTIES," |
| 1035 "parameter" |
| 1036 "attributes," |
| 1037 "circular" |
| 1038 "map" |
| 1039 "may" |
| 1040 "clone" |
| 1041 "(PLUS" |
| 1042 "collection" |
| 1043 "DISCLAIMS" |
| 1044 "produce" |
| 1045 "preferred" |
| 1046 "Prologue" |
| 1047 "date" |
| 1048 "representations" |
| 1049 "Int16Array" |
| 1050 "data" |
| 1051 "annotation" |
| 1052 "ambiguous" |
| 1053 "USA," |
| 1054 "computations" |
| 1055 "bind" |
| 1056 "lines" |
| 1057 "element" |
| 1058 "q" |
| 1059 "rather" |
| 1060 "block" |
| 1061 "allow" |
| 1062 "representation" |
| 1063 "terminating" |
| 1064 "__proto__" |
| 1065 "(COLON)," |
| 1066 "tagged" |
| 1067 "@@toPrimitive" |
| 1068 "Uint32Array" |
| 1069 "Generator" |
| 1070 "move" |
| 1071 "Use" |
| 1072 "years" |
| 1073 "symbols" |
| 1074 "comma" |
| 1075 "differs" |
| 1076 "INCIDENTAL," |
| 1077 "THE" |
| 1078 "non-zero" |
| 1079 "1" |
| 1080 "(LF)" |
| 1081 "group" |
| 1082 "Rules" |
| 1083 "platform" |
| 1084 "Using" |
| 1085 "main" |
| 1086 "defining" |
| 1087 "<" |
| 1088 "pending" |
| 1089 "Date.prototype.toUTCString" |
| 1090 "non" |
| 1091 "greater" |
| 1092 "views" |
| 1093 "%JSON%" |
| 1094 "(FULL" |
| 1095 "BRACKET)" |
| 1096 "EVEN" |
| 1097 "Extensions" |
| 1098 "subtraction" |
| 1099 "SameValueZero" |
| 1100 "not" |
| 1101 "(P," |
| 1102 "now" |
| 1103 "nor" |
| 1104 "execute" |
| 1105 "name" |
| 1106 "Iterator" |
| 1107 "U+1D11E" |
| 1108 "(LOW" |
| 1109 "unrepresentable" |
| 1110 "trap" |
| 1111 "Eliminating" |
| 1112 "identifier" |
| 1113 "|" |
| 1114 "subset" |
| 1115 "(the" |
| 1116 "8," |
| 1117 "Generic" |
| 1118 "non-object" |
| 1119 "U+0000" |
| 1120 "static" |
| 1121 "(HYPHEN-MINUS)" |
| 1122 "year" |
| 1123 "operand" |
| 1124 "U+0008" |
| 1125 "transitions" |
| 1126 "Parameter" |
| 1127 "special" |
| 1128 "out" |
| 1129 "space" |
| 1130 "REQUIRED" |
| 1131 "RegExpExec" |
| 1132 "Set" |
| 1133 "Float32Array" |
| 1134 "Throw" |
| 1135 "index." |
| 1136 "G" |
| 1137 "state" |
| 1138 "column" |
| 1139 "RFC" |
| 1140 "completely" |
| 1141 "Used" |
| 1142 "x" |
| 1143 "IMPLIED," |
| 1144 "byte" |
| 1145 "remainder" |
| 1146 "log" |
| 1147 "DATA," |
| 1148 "backwards" |
| 1149 "unescape" |
| 1150 "language" |
| 1151 "ArrayBuffer" |
| 1152 "@@hasInstance" |
| 1153 "times" |
| 1154 "STRICT" |
| 1155 "length" |
| 1156 "separator" |
| 1157 "isView" |
| 1158 "hexadecimal" |
| 1159 "first" |
| 1160 "clause" |
| 1161 "variables" |
| 1162 "one" |
| 1163 "INTERRUPTION)" |
| 1164 "ISO" |
| 1165 "suspended" |
| 1166 "JOINER)" |
| 1167 "reached" |
| 1168 "array" |
| 1169 "size" |
| 1170 "given" |
| 1171 "Runtime" |
| 1172 "checked" |
| 1173 "CURLY" |
| 1174 "start" |
| 1175 "ordering" |
| 1176 "Symbol" |
| 1177 "Date.prototype.setFullYear" |
| 1178 "Uint8Array" |
| 1179 "grow" |
| 1180 "their" |
| 1181 "SEE" |
| 1182 "2" |
| 1183 "Date" |
| 1184 "TypedArray" |
| 1185 "bits" |
| 1186 "final" |
| 1187 "HasProperty" |
| 1188 "destructuring" |
| 1189 "that" |
| 1190 "completed" |
| 1191 "exactly" |
| 1192 "R" |
| 1193 "closures" |
| 1194 "LETTER" |
| 1195 "variable." |
| 1196 "PDF" |
| 1197 "copy" |
| 1198 "than" |
| 1199 "specify" |
| 1200 "===" |
| 1201 "relative" |
| 1202 "later." |
| 1203 ":" |
| 1204 "1;" |
| 1205 "depends" |
| 1206 "accesses" |
| 1207 "WHETHER" |
| 1208 "r" |
| 1209 "were" |
| 1210 "1)" |
| 1211 "accessed" |
| 1212 "GeneratorFunction" |
| 1213 "URIError" |
| 1214 "1," |
| 1215 "ArrayBuffer.prototype.slice" |
| 1216 "result" |
| 1217 "and" |
| 1218 "Executable" |
| 1219 "false" |
| 1220 "NEGLIGENCE" |
| 1221 "explicit" |
| 1222 "argument" |
| 1223 "generalization" |
| 1224 "Field" |
| 1225 "Other" |
| 1226 "Call" |
| 1227 "have" |
| 1228 "String.prototype.charAt" |
| 1229 "any" |
| 1230 "conversion" |
| 1231 "Date.prototype.setUTCMonth" |
| 1232 "min" |
| 1233 "LINE)" |
| 1234 "(no" |
| 1235 "instance" |
| 1236 "which" |
| 1237 "=" |
| 1238 "TRV." |
| 1239 "begin" |
| 1240 "multiple" |
| 1241 "Name" |
| 1242 "normal" |
| 1243 "buffer" |
| 1244 "callable" |
| 1245 "connected" |
| 1246 "comparison" |
| 1247 "inserted" |
| 1248 "pages" |
| 1249 "RIGHT" |
| 1250 "considered" |
| 1251 "request" |
| 1252 "Module" |
| 1253 "Date.prototype.toString" |
| 1254 "OUT" |
| 1255 "Date.prototype.setUTCHours" |
| 1256 "Export" |
| 1257 "ECMA-404" |
| 1258 "STOP)," |
| 1259 "Array" |
| 1260 "}" |
| 1261 "selection" |
| 1262 "text" |
| 1263 "supported" |
| 1264 "POSSIBILITY" |
| 1265 "BRACKET," |
| 1266 "Reflect.setPrototypeOf" |
| 1267 "ECMA-402" |
| 1268 "line" |
| 1269 "Math" |
| 1270 "slot" |
| 1271 "We" |
| 1272 "based" |
| 1273 "(" |
| 1274 "cache" |
| 1275 "3" |
| 1276 "should" |
| 1277 "only" |
| 1278 "unable" |
| 1279 "invocation" |
| 1280 "SEPARATOR)" |
| 1281 "b" |
| 1282 "local" |
| 1283 "WARRANTIES" |
| 1284 "handle" |
| 1285 "get" |
| 1286 "==" |
| 1287 "space," |
| 1288 "HEREIN" |
| 1289 "cannot" |
| 1290 "words" |
| 1291 "progress" |
| 1292 "quantifier" |
| 1293 "interpreted" |
| 1294 "neither" |
| 1295 "secondary" |
| 1296 "closure" |
| 1297 "Right" |
| 1298 "resource" |
| 1299 "upper" |
| 1300 "encounters" |
| 1301 "yield" |
| 1302 "keyed" |
| 1303 "EST," |
| 1304 "Date.prototype.getYear" |
| 1305 "INCLUDING" |
| 1306 "contain" |
| 1307 "Reflect.preventExtensions" |
| 1308 "fixed" |
| 1309 "where" |
| 1310 "view" |
| 1311 "SOFTWARE," |
| 1312 "declared" |
| 1313 "declarations" |
| 1314 "RETURN" |
| 1315 "computed" |
| 1316 "exists" |
| 1317 "we" |
| 1318 "module" |
| 1319 "up" |
| 1320 "writable" |
| 1321 "Source" |
| 1322 "(BACKSPACE)," |
| 1323 "legacy" |
| 1324 "truncating" |
| 1325 "receiver." |
| 1326 "THEORY" |
| 1327 "invoked" |
| 1328 "attribute," |
| 1329 "U+001F" |
| 1330 "pattern" |
| 1331 "lexical" |
| 1332 "label" |
| 1333 "outside" |
| 1334 "toString" |
| 1335 "closed" |
| 1336 "between" |
| 1337 "Reflect.getPrototypeOf" |
| 1338 "import" |
| 1339 "boundary" |
| 1340 "reading" |
| 1341 "checks" |
| 1342 "AVAILABLE" |
| 1343 "FOR" |
| 1344 "<NUL>" |
| 1345 "S" |
| 1346 "key" |
| 1347 "Identifier" |
| 1348 "valid" |
| 1349 "P," |
| 1350 "observable" |
| 1351 "revoked" |
| 1352 "many" |
| 1353 "equal" |
| 1354 "Month" |
| 1355 "propagation" |
| 1356 "s" |
| 1357 "Unicode" |
| 1358 "Escape" |
| 1359 "values)" |
| 1360 "MapIterator" |
| 1361 "expression" |
| 1362 "values," |
| 1363 "Boolean.prototype.valueOf" |
| 1364 "comment" |
| 1365 "(HYPHEN-MINUS)," |
| 1366 "color" |
| 1367 "pos" |
| 1368 "adding" |
| 1369 "table" |
| 1370 "allocated" |
| 1371 "array-like" |
| 1372 "IS" |
| 1373 "addition" |
| 1374 "]" |
| 1375 "MARK)" |
| 1376 "mark" |
| 1377 "(SPACE)," |
| 1378 "literal" |
| 1379 "(SPACE)." |
| 1380 "non-configurable" |
| 1381 "U+200D" |
| 1382 "prototype" |
| 1383 ">" |
| 1384 "enable" |
| 1385 "(S," |
| 1386 "restrictions" |
| 1387 "instantiated" |
| 1388 "Function.prototype.apply" |
| 1389 "external" |
| 1390 "WAY" |
| 1391 "declaration" |
| 1392 "CONSEQUENTIAL" |
| 1393 "folding" |
| 1394 "Date.prototype" |
| 1395 "an" |
| 1396 "E)," |
| 1397 "present" |
| 1398 "IsArray" |
| 1399 "/" |
| 1400 "contexts" |
| 1401 "Number" |
| 1402 "value" |
| 1403 "will" |
| 1404 "(UCS)" |
| 1405 "J.UCS" |
| 1406 "ADVISED" |
| 1407 "unpaired" |
| 1408 "FEED" |
| 1409 "ECMA-402:" |
| 1410 "architecture." |
| 1411 "parse" |
| 1412 "Strict" |
| 1413 "PARTICULAR" |
| 1414 "IEEE" |
| 1415 "comments" |
| 1416 "capture" |
| 1417 "different" |
| 1418 "Return" |
| 1419 "compiling" |
| 1420 "generic" |
| 1421 "Typed" |
| 1422 "same" |
| 1423 "configurable" |
| 1424 "member" |
| 1425 "Regular" |
| 1426 "mode." |
| 1427 "events" |
| 1428 "Types" |
| 1429 "SOFTWARE" |
| 1430 "string." |
| 1431 "extended" |
| 1432 "infinity" |
| 1433 "again" |
| 1434 "initialization" |
| 1435 "LIABLE" |
| 1436 "effect" |
| 1437 "running" |
| 1438 "IN" |
| 1439 "changing" |
| 1440 "validate" |
| 1441 "ACM," |
| 1442 "U+002D" |
| 1443 "IF" |
| 1444 "//" |
| 1445 "undefined" |
| 1446 "String.prototype.trim" |
| 1447 "argument." |
| 1448 "argument," |
| 1449 "UTC)" |
| 1450 "UTC." |
| 1451 "It" |
| 1452 "<table" |
| 1453 "ANY" |
| 1454 "patterns" |
| 1455 "without" |
| 1456 "extensible" |
| 1457 "In" |
| 1458 "String.prototype.charCodeAt" |
| 1459 "position" |
| 1460 "(ZERO" |
| 1461 "bodies" |
| 1462 "If" |
| 1463 "BE" |
| 1464 "(UTC)" |
| 1465 "less" |
| 1466 "being" |
| 1467 "captures" |
| 1468 "ToInteger" |
| 1469 "numbering" |
| 1470 "rest" |
| 1471 "unary" |
| 1472 "R," |
| 1473 "unicode" |
| 1474 "BY" |
| 1475 "captured" |
| 1476 "U+212A" |
| 1477 "generator" |
| 1478 "hint" |
| 1479 "supply" |
| 1480 "unsigned" |
| 1481 "add" |
| 1482 "setting" |
| 1483 "extends" |
| 1484 "4" |
| 1485 "usage" |
| 1486 "lookup" |
| 1487 "(A" |
| 1488 "match" |
| 1489 "Labelled" |
| 1490 "identical" |
| 1491 "Control" |
| 1492 "rules" |
| 1493 "DIRECT," |
| 1494 "(inclusive)" |
| 1495 "non-null" |
| 1496 "[U]" |
| 1497 "immediately" |
| 1498 "execution" |
| 1499 "left-hand" |
| 1500 "desc" |
| 1501 "LIMITED" |
| 1502 "(EQUALS" |
| 1503 "missing." |
| 1504 "B." |
| 1505 "user-defined" |
| 1506 "Bitwise" |
| 1507 "MATTERS" |
| 1508 "BRACKET" |
| 1509 "t" |
| 1510 "CLAIMS" |
| 1511 "multiplicative" |
| 1512 "output" |
| 1513 "OTHERWISE)" |
| 1514 "page" |
| 1515 "replacement" |
| 1516 "specifies" |
| 1517 "because" |
| 1518 "sequence" |
| 1519 "uppercase" |
| 1520 "conditional" |
| 1521 "searching" |
| 1522 "calling" |
| 1523 "INCLUDING," |
| 1524 "specified" |
| 1525 "proper" |
| 1526 "New" |
| 1527 "Date.prototype.toTimeString" |
| 1528 "literals" |
| 1529 "lead" |
| 1530 "[+U]" |
| 1531 "avoid" |
| 1532 "results:" |
| 1533 "leap" |
| 1534 "does" |
| 1535 "\x22B\x22," |
| 1536 "CreateListFromArrayLike" |
| 1537 "?" |
| 1538 "mode" |
| 1539 "SQUARE" |
| 1540 "power" |
| 1541 "compiler" |
| 1542 "WeakMap" |
| 1543 "(TRV)" |
| 1544 "A-Z" |
| 1545 "offset" |
| 1546 "regexp" |
| 1547 "TRV" |
| 1548 "ALL" |
| 1549 "on" |
| 1550 "actual" |
| 1551 "extension" |
| 1552 "Date.prototype.valueOf" |
| 1553 "of" |
| 1554 "Date.prototype.setTime" |
| 1555 "recognized" |
| 1556 "(SV)" |
| 1557 "(U+00DF)" |
| 1558 "FL," |
| 1559 "constructor" |
| 1560 "or" |
| 1561 "Int32Array" |
| 1562 "referenced" |
| 1563 "letters" |
| 1564 "No" |
| 1565 "Internal" |
| 1566 "promise" |
| 1567 "Function.prototype.toString" |
| 1568 "Reflect.defineProperty" |
| 1569 "operator" |
| 1570 "Empty" |
| 1571 "Week" |
| 1572 "(U+017F)" |
| 1573 "Infinity" |
| 1574 "additional" |
| 1575 "prepare" |
| 1576 "NO" |
| 1577 "*" |
| 1578 "ECMA-262" |
| 1579 "decode" |
| 1580 "strict" |
| 1581 "context." |
| 1582 "SIGPLAN" |
| 1583 "N," |
| 1584 "triggered" |
| 1585 "enough" |
| 1586 "TABULATION)," |
| 1587 "DISCLAIMED." |
| 1588 "ToPrimitive" |
| 1589 "but" |
| 1590 "repeated" |
| 1591 "construction" |
| 1592 "Error" |
| 1593 "(RIGHT" |
| 1594 "N2" |
| 1595 "promote" |
| 1596 "(C," |
| 1597 "longer" |
| 1598 "count" |
| 1599 "1024" |
| 1600 "UTF-16" |
| 1601 "embedded" |
| 1602 "U+002F" |
| 1603 "using" |
| 1604 "signed" |
| 1605 "U+002C" |
| 1606 "below" |
| 1607 "converted" |
| 1608 "limit" |
| 1609 "MERCHANTABILITY" |
| 1610 "<BS>" |
| 1611 "define" |
| 1612 "detailed" |
| 1613 "USE" |
| 1614 "<CR><LF>" |
| 1615 "Space" |
| 1616 "exhausted" |
| 1617 "combining" |
| 1618 "FIFO" |
| 1619 "general" |
| 1620 "as" |
| 1621 "optionally" |
| 1622 "at" |
| 1623 "file" |
| 1624 "Reflect.deleteProperty" |
| 1625 "trailing" |
| 1626 "Function" |
| 1627 "parameters." |
| 1628 "functions" |
| 1629 "beyond" |
| 1630 "Date.prototype.setUTCDate" |
| 1631 "virtual" |
| 1632 "Reflect" |
| 1633 "field" |
| 1634 "other" |
| 1635 "5" |
| 1636 "details" |
| 1637 "<<" |
| 1638 "requested" |
| 1639 "repeat" |
| 1640 "Uint8ClampedArray" |
| 1641 "separate" |
| 1642 "symbol" |
| 1643 "Remove" |
| 1644 "U" |
| 1645 "functions)" |
| 1646 "(DOLLAR" |
| 1647 "Object.prototype" |
| 1648 "calls" |
| 1649 "code," |
| 1650 "(INCLUDING" |
| 1651 "rule" |
| 1652 "strings" |
| 1653 "code." |
| 1654 "Year" |
| 1655 "(URL)," |
| 1656 "validation" |
| 1657 "starting" |
| 1658 "function," |
OLD | NEW |