this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

#2584: add 'of' js keyword (#2587)

authored by

Vadim Grigoruk and committed by
GitHub
48005e65 3dfc2ed6

+1 -1
+1 -1
src/api/js.c
··· 1183 1183 "finally", "for", "function", "if", "implements", "import", "in", "instanceof", 1184 1184 "interface", "let", "new", "null", "package", "private", "protected", 1185 1185 "public", "return", "super", "switch", "static", "this", "throw", "try", 1186 - "true", "typeof", "var", "void", "while", "with", "yield" 1186 + "true", "typeof", "var", "void", "while", "with", "yield", "of" 1187 1187 }; 1188 1188 1189 1189 static inline bool isalnum_(char c) {return isalnum(c) || c == '_';}