| 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" | |
| OLD | NEW |