mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
56 lines
769 B
C
56 lines
769 B
C
#include "deflex.h"
|
|
|
|
const char *lex_descr[] = {
|
|
"",
|
|
"Latin word",
|
|
"Non-latin word",
|
|
"Word",
|
|
"Email",
|
|
"URL",
|
|
"Host",
|
|
"Scientific notation",
|
|
"VERSION",
|
|
"Part of hyphenated word",
|
|
"Non-latin part of hyphenated word",
|
|
"Latin part of hyphenated word",
|
|
"Space symbols",
|
|
"HTML Tag",
|
|
"HTTP head",
|
|
"Hyphenated word",
|
|
"Latin hyphenated word",
|
|
"Non-latin hyphenated word",
|
|
"URI",
|
|
"File or path name",
|
|
"Decimal notation",
|
|
"Signed integer",
|
|
"Unsigned integer",
|
|
"HTML Entity"
|
|
};
|
|
|
|
const char *tok_alias[] = {
|
|
"",
|
|
"lword",
|
|
"nlword",
|
|
"word",
|
|
"email",
|
|
"url",
|
|
"host",
|
|
"sfloat",
|
|
"version",
|
|
"part_hword",
|
|
"nlpart_hword",
|
|
"lpart_hword",
|
|
"blank",
|
|
"tag",
|
|
"http",
|
|
"hword",
|
|
"lhword",
|
|
"nlhword",
|
|
"uri",
|
|
"file",
|
|
"float",
|
|
"int",
|
|
"uint",
|
|
"entity"
|
|
};
|