summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/CppLexer.cpp
AgeCommit message (Expand)Author
2020-09-08AK: Remove FixedArray class.asynts
2020-08-16AK: HashTable add a constructor that allows preallocation of capacity + Use i...Muhammad Zahalqa
2020-08-03CppLexer: Actually give raw strings type RawStringNico Weber
2020-07-27CppLexer: Support raw string literalsNico Weber
2020-07-27CppLexer: Support L, u, u8, U prefixes on string and char literalsNico Weber
2020-07-27CppLexer: Correctly highlight hex escapes in string and char literalsNico Weber
2020-07-27CppLexer: Support \U escapes in addition to \u escapesNico Weber
2020-07-27CppLexer: Add token types for "::", "::*", ".*", "->*"Nico Weber
2020-07-27CppLexer: Add token types for ".", "->"Nico Weber
2020-07-27CppLexer: Add token types for "!", "!=", "~", "?", ":"Nico Weber
2020-07-27CppLexer: Add token types for "^", "^="Nico Weber
2020-07-27CppLexer: Add token types for "++", "--"Nico Weber
2020-07-27CppLexer: Add token types for "&", "&&", "&=", "|", "||", "|="Nico Weber
2020-07-27CppLexer: Add token types for ">", ">=", ">>", ">>="Nico Weber
2020-07-27CppLexer: Add token types for "<", "<=", "<<", "<<=", "<>"Nico Weber
2020-07-26CppLexer: Add token types for "+", "+=", "-", "-=", "=", "==", "/", "/="Nico Weber
2020-07-26CppLexer: Add token type for "*="Nico Weber
2020-04-04LibGUI: Fix CppLexer assertion on incomplete #include statementsAndreas Kling
2020-03-12LibGUI: Parse #include statements separatelyOriko
2020-03-11LibGUI: Highlight various number literalsOriko
2020-03-11LibGUI: Syntax highlight string escape sequencesOriko
2020-02-07LibGUI+HackStudio: Move syntax highlighting from HackStudio to LibGUIAndreas Kling