| 247 | } |
| 248 | |
| 249 | literalsAllowed AllowedLiterals() const { |
| 250 | literalsAllowed allowedLiterals = stringsU ? litU : litNone; |
| 251 | if (stringsB) |
| 252 | allowedLiterals = static_cast<literalsAllowed>(allowedLiterals | litB); |
| 253 | if (stringsF) |
| 254 | allowedLiterals = static_cast<literalsAllowed>(allowedLiterals | litF); |
| 255 | return allowedLiterals; |
| 256 | } |
| 257 | }; |
| 258 | |
| 259 | static const char *const pythonWordListDesc[] = { |