fix(frontends/lean/token_table): add missing built-in token

`::` is used not only by `list` but also the built-in `structure` command
This commit is contained in:
Sebastian Ullrich 2018-09-25 12:20:08 -07:00
parent 95c469f8c4
commit ac7b70c555

View file

@ -96,7 +96,7 @@ void init_token_table(token_table & t) {
{"/-", 0}, {"/--", 0}, {"/-!", 0}, {"begin", g_max_prec}, {"using", 0},
{"@@", g_max_prec}, {"@", g_max_prec},
{"sorry", g_max_prec}, {"+", g_plus_prec}, {"->", g_arrow_prec}, {"<-", 0},
{"match", 0}, {"^.", g_max_prec+1},
{"match", 0}, {"^.", g_max_prec+1}, {"::", 67},
{"renaming", 0}, {"extends", 0}, {"node!", g_max_prec}, {"node_choice!", g_max_prec}, {nullptr, 0}};
char const * commands[] =