summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp
AgeCommit message (Expand)Author
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-09-28LibCpp: Remove redundant comparison to Token::Type::PipePipeBrian Gianforcaro
2021-08-21LibCpp: Use lex_iterable() where applicableItamar
2021-08-21LibCpp: Add lex_iterable() method to the LexerItamar
2021-08-21LibCpp: Lex before processing the source in the PreprocessorItamar
2021-08-21LibCpp: Allow whitespace between # and preprocessor directiveItamar
2021-08-14Tests: Add regression tests for the LibCpp preprocessorItamar
2021-08-14LibCpp: Move parser tests to Userland/Libraries/LibCpp/Tests/parserItamar
2021-08-14LibCpp: Evaluate function-like macro callsItamar
2021-08-14LibCpp: Understand preprocessor macro definition and invocationItamar
2021-08-14LibCpp: Add lexer option to ignore whitespace tokensItamar
2021-08-07LibCpp: Do macro substitution in the preprocessor instead of the parserItamar
2021-08-07LibCpp: Import definitions from headers while processingItamar
2021-08-07LibCpp: Do lexing in the PreprocessorItamar
2021-08-07LibCpp: Support initializing the lexer with a "start line"Itamar
2021-08-02LibCpp: Allow 'final' in a class declaration with inheritanceAli Mohammad Pur
2021-08-02LibCpp: Add support for east constAli Mohammad Pur
2021-08-02LibCpp: Allow 'override' as a function target qualifierAli Mohammad Pur
2021-08-02LibCpp: Add support for parsing function typesAli Mohammad Pur
2021-08-02LibCpp: Allow 'const' after a function's signatureAli Mohammad Pur
2021-08-02LibCpp: Add support for parsing reference typesAli Mohammad Pur
2021-08-02LibCpp: Allow virtual destructorsAli Mohammad Pur
2021-08-02LibCpp: Match and ignore struct/class inheritanceAli Mohammad Pur
2021-08-02LibCpp: Correctly parse lines that end in '\'Ali Mohammad Pur
2021-08-02LibCpp: Parse enum members with explicit valuesAli Mohammad Pur
2021-08-02LibCpp: Parse "extern" declarationsAli Mohammad Pur
2021-08-02LibCpp: Accept scoped variable declarationsAli Mohammad Pur
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