MCPcopy Create free account
hub / github.com/cxasm/notepad-- / AllowedLiterals

Method AllowedLiterals

src/qscint/scintilla/lexers/LexPython.cpp:249–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
259static const char *const pythonWordListDesc[] = {

Callers 1

LexMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected