summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp
AgeCommit message (Expand)Author
2021-07-13LibCpp: Don't store entire ASTNode vector in each parser stateItamar
2021-07-13LibCpp: Only store error messages for the main parser stateItamar
2021-07-10LibCpp: Use fast_is<T> and verify_cast<T> to replace C-style castsItamar
2021-07-10LibCpp: Make the fields of AST node types privateItamar
2021-07-04LibCpp: Add Parser::tokens_in_range(start, end)Itamar
2021-07-04LibCpp: Fix positional information of Pointer typesItamar
2021-07-04LibCpp: Fix parsing of ellipsisItamar
2021-06-29LibCpp: Update Parser test data after Type=>NamedType changeItamar
2021-06-29LibCpp: Differentiate between Type and NamedTypeItamar
2021-06-29LibCpp: Add LOG_SCOPE() macro for debugging the parser's flowItamar
2021-06-29LibCpp: Support parsing enum classesItamar
2021-06-23HackStudio: Make TODO entries clickableFederico Guerinoni
2021-06-23LibCpp: Add function for retrieving TODO comments from the parserFederico Guerinoni
2021-06-16LibCpp: Remove InlineLinkedList from the list of known typesBrian Gianforcaro
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-09LibCpp: Add test for parsing class definitionsItamar
2021-06-09LibCpp: Parse basic constructors and destructorsItamar
2021-06-09LibCpp: Handle class access-specifiers in the ParserItamar
2021-06-09LibCpp: Support non-field class membersItamar
2021-06-09LibCpp: Make 'bool' a Token::Type::KnownTypeItamar
2021-06-07LibWeb+LibSyntax: Implement nested syntax highlightersAli Mohammad Pur
2021-06-05LibCpp: Fix off-by-one error in SyntaxHighlighterMax Wipfli
2021-06-05LibCpp: Do not emit empty whitespace token after include statementMax Wipfli
2021-06-05LibCpp: Use CharacterTypes.h and constexpr functions in LexerMax Wipfli
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