Index: Source/build/scripts/make_mediaquery_tokenizer_codepoints.py |
diff --git a/Source/build/scripts/make_mediaquery_tokenizer_codepoints.py b/Source/build/scripts/make_mediaquery_tokenizer_codepoints.py |
index 86af6633c614b6cefa832b278e35f2fe50fc0fbf..ba5199c32a85acc8c92d0414727c5cb2fed97884 100755 |
--- a/Source/build/scripts/make_mediaquery_tokenizer_codepoints.py |
+++ b/Source/build/scripts/make_mediaquery_tokenizer_codepoints.py |
@@ -28,6 +28,10 @@ const unsigned codePointsNumber = {array_size}; |
def token_type(i): |
codepoints = {'(': 'leftParenthesis', |
')': 'rightParenthesis', |
+ '[': 'leftBracket', |
+ ']': 'rightBracket', |
+ '{': 'leftBrace', |
+ '}': 'rightBrace', |
'+': 'plusOrFullStop', |
'.': 'plusOrFullStop', |
'-': 'hyphenMinus', |