summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/AST.h
AgeCommit message (Expand)Author
2023-04-26LibCpp: Support for parsing c-style fixed arrays (arr[2])iyush
2023-03-06Everywhere: Remove NonnullRefPtr.h includesAndreas Kling
2023-03-06Everywhere: Stop using NonnullRefPtrVectorAndreas Kling
2023-02-21LibCpp: Make C++ AST (mostly) const-correctAndreas Kling
2023-01-27LibCpp: Parse 'using namespace' declarationsPoseydon42
2023-01-09AK+Everywhere: Rename FlyString to DeprecatedFlyStringTimothy Flynn
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-04-17LibCpp: Parse inheritanceItamar
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-19LibCpp: Change class_name to use StringView instead of char const*Lenny Maiorani
2022-02-27LanguageServers/Cpp: Make find declaration of enums workItamar
2022-02-23LibCpp: Allow qualified names in AST Declaration nodesItamar
2022-02-09LibCpp: Fix Declaration::is_member()Itamar
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-08-02LibCpp: Add support for parsing function typesAli Mohammad Pur
2021-08-02LibCpp: Add support for parsing reference typesAli Mohammad Pur
2021-08-02LibCpp: Parse enum members with explicit valuesAli Mohammad Pur
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-06-29LibCpp: Differentiate between Type and NamedTypeItamar
2021-06-29LibCpp: Support parsing enum classesItamar
2021-06-09LibCpp: Parse basic constructors and destructorsItamar
2021-06-09LibCpp: Support non-field class membersItamar
2021-05-19LibCpp: Fix "NumricLiteral" => "NumericLiteral" typoItamar
2021-05-19LibCpp: Generalize ASTNode::dump() to support redirecting its outputItamar
2021-05-19LibCpp: Support 'auto' TypeItamar
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
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-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 sizeof() expressionItamar
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: 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-03-23HackStudio+LanguageServers/Cpp: Show scope of symbols in LocatorItamar
2021-03-23LibCpp: Parse Namespace declarationItamar
2021-03-13LibCpp: Implement Parser::text_in_range using text of tokensItamar
2021-03-02LibCpp: Parse ellipsisItamar