summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp
AgeCommit message (Expand)Author
2021-06-05LibCpp: Use east const style in Lexer and SyntaxHighlighterMax Wipfli
2021-06-04LibCpp: Revert change to strace.cpp AST test from bf8fd4cAndreas Kling
2021-06-03Everywhere: Remove accidental '\n' from various outln() invocationsAndreas Kling
2021-06-01LibCpp: Consider declarations inside a function's bodyItamar
2021-05-22LibCpp: Add option in Preprocessor to keep #include's in processed textItamar
2021-05-22LibCpp: Make Preprocessor::handle_preprocessor_line return keywordItamar
2021-05-22LibCpp: Modify Token::to_string() to include more informationItamar
2021-05-19LibCpp: Add regression tests for the parserItamar
2021-05-19LibCpp: Fix "NumricLiteral" => "NumericLiteral" typoItamar
2021-05-19LibCpp: Generalize ASTNode::dump() to support redirecting its outputItamar
2021-05-19LibCpp: Fix match_expression()Itamar
2021-05-19LibCpp: Support 'auto' TypeItamar
2021-05-15LibCpp: Modify parsing of a Name's scopeItamar
2021-05-15LibCpp: Modify logic of Parser::index_of_node_atItamar
2021-05-09LibCpp: Support Lexing escaped newlinesItamar
2021-05-09LibCpp: Rename m_definitions=>m_preprocessor_definitionsItamar
2021-05-08AK+LibCpp: Remove DEBUG_SPAM in favour of per-application definesAli Mohammad Pur
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner
2021-04-25LibCpp: Convert ScopeLogger to use AK:SourceLocationBrian Gianforcaro
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-19LibCpp: Support parsing class declarationsItamar
2021-04-13LibCpp: Add 'Namespace' and 'Member' declaration typesItamar
2021-04-13HackStudio+LibCpp: Include class members in LocatorItamar
2021-04-06LibCpp: Add TemplatizedNameItamar
2021-04-06LanguageServers/Cpp: Refactor logic of find declarationItamar
2021-04-06LibCpp: Introduce DummyASTNodeItamar
2021-04-06LibCpp: Parse C-Style parse expressionsItamar
2021-04-06LibCpp: Parse "arrow" operatorItamar
2021-04-06LibCpp: Parse braced initialization listItamar
2021-04-06LibCpp: Parse empty for loopsItamar
2021-04-06LibCpp: Parse sizeof() expressionItamar
2021-04-06LibCpp: Handle 'struct' prefix before a typeItamar
2021-04-06LibCpp: Parse Bitwise & Logical Or & And operatorsItamar
2021-04-06LibCpp: Parse C++ cast expressionsItamar
2021-04-06LibCpp: Support parsing templatized function callsItamar
2021-04-06LibCpp: Support parsing '!=" operatorItamar
2021-04-06LibCpp: Parse character literalsItamar
2021-04-06LibCpp: Add AST::NameItamar
2021-04-06LibCpp: Parse templatized typesItamar
2021-04-06LibCpp: Parse nullptr literalItamar
2021-04-06LibCpp: Support parsing binary "==" OperatorItamar
2021-04-06LibCpp: Support parsing function qualifiersItamar
2021-04-06LibCpp: Support parsing empty return statementsItamar
2021-04-06LibCpp: Parse variable declarations in global scopeItamar
2021-04-06LibCpp: Fix null dereference in IfStatement::declarations()Itamar
2021-03-23HackStudio+LanguageServers/Cpp: Show scope of symbols in LocatorItamar
2021-03-23LibCpp: Parse Namespace declarationItamar
2021-03-18LibCpp: Add preprocessor option to ignore unsupported keywordsVyacheslav Pukhanov
2021-03-16LibCpp: Return empty TranslationUnit from Parser::parse() if no tokens existLinus Groh