summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/Parser.cpp
AgeCommit message (Expand)Author
2022-02-27LibCpp: Set end position for the return type node of FunctionType nodesItamar
2022-02-23LibCpp: Allow qualified names in AST Declaration nodesItamar
2022-02-09LibCpp: Fix end position calculation for various AST node typesItamar
2022-02-09LibCpp: Fix parent of parameter type nodeItamar
2021-12-05LibCpp: Cast unused smart-pointer return values to voidSam Atkins
2021-11-29LibCpp: Fix copy paste typo in Parser::match_secondary_expressionBrian Gianforcaro
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-09-28LibCpp: Remove redundant comparison to Token::Type::PipePipeBrian Gianforcaro
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-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: 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: 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: 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-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-05-22LibCpp: Modify Token::to_string() to include more informationItamar
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: 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-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-19LibCpp: Support parsing class declarationsItamar
2021-04-06LibCpp: Add TemplatizedNameItamar
2021-04-06LanguageServers/Cpp: Refactor logic of find declarationItamar
2021-04-06LibCpp: Introduce DummyASTNodeItamar