rcl/fuzz/dictionary_base.txt
Ruud van Asseldonk 34e347a387 Generate fuzz dictionary from Pygments grammar
I regularly add new methods, and it's becoming tedious to have to
remember to update all the places that reference these, so let's
generate them and automate the process. For now, I'm choosing the
Pygments grammar as the source of truth, and the first target to
generate is the fuzz dictionary.
2025-03-03 22:14:27 +01:00

30 lines
333 B
Text

# Operators
"*"
"+"
"-"
"/"
"=>"
"=="
">="
"<="
">"
"<"
# Collection literals.
"[]"
"{}"
# String literals and escape sequences.
"\"\"\""
"\\\""
"\\\\"
"\\u{1f574}"
"f\""
"f\"\"\""
# Some examples of numbers.
"0x1"
"0b1"
"0.1e1"
# The maximum value of an i64, to make the fuzzer more likely to hit overflows.
"0x7fffffffffffffff"