35 lines
2.0 KiB
Plaintext
35 lines
2.0 KiB
Plaintext
string generateFixedLengthCases() {
|
|
int[] shortList = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
|
|
something[] items = [
|
|
one, two, three, four, five, six, seven, eight, nine, ten, eleven,
|
|
twelve, thirteen, fourteen
|
|
];
|
|
|
|
string[] fixedLengthTokens = [
|
|
"abstract", "alias", "align", "asm", "assert", "auto", "body", "bool",
|
|
"break", "byte", "case", "cast", "catch", "cdouble", "cent", "cfloat",
|
|
"char", "class", "const", "continue", "creal", "dchar", "debug",
|
|
"default", "delegate", "delete", "deprecated", "do", "double", "else",
|
|
"enum", "export", "extern", "false", "final", "finally", "float", "for",
|
|
"foreach", "foreach_reverse", "function", "goto", "idouble", "if",
|
|
"ifloat", "immutable", "import", "in", "inout", "int", "interface",
|
|
"invariant", "ireal", "is", "lazy", "long", "macro", "mixin", "module",
|
|
"new", "nothrow", "null", "out", "override", "package", "pragma",
|
|
"private", "protected", "public", "pure", "real", "ref", "return",
|
|
"scope", "shared", "short", "static", "struct", "super", "switch",
|
|
"synchronized", "template", "this", "throw", "true", "try", "typedef",
|
|
"typeid", "typeof", "ubyte", "ucent", "uint", "ulong", "union",
|
|
"unittest", "ushort", "version", "void", "volatile", "wchar", "while",
|
|
"with", "__DATE__", "__EOF__", "__FILE__", "__FUNCTION__", "__gshared",
|
|
"__LINE__", "__MODULE__", "__parameters", "__PRETTY_FUNCTION__",
|
|
"__TIME__", "__TIMESTAMP__", "__traits", "__vector", "__VENDOR__",
|
|
"__VERSION__", ",", ".", "..", "...", "/", "/=", "!", "!<", "!<=", "!<>",
|
|
"!<>=", "!=", "!>", "!>=", "$", "%", "%=", "&", "&&", "&=", "(", ")",
|
|
"*", "*=", "+", "++", "+=", "-", "--", "-=", ":", ";", "<", "<<", "<<=",
|
|
"<=", "<>", "<>=", "=", "==", "=>", ">", ">=", ">>", ">>=", ">>>",
|
|
">>>=", "?", "@", "[", "]", "^", "^=", "^^", "^^=", "{", "|", "|=", "||", "}",
|
|
"~", "~="
|
|
];
|
|
}
|