summaryrefslogtreecommitdiff
path: root/Shell/AST.h
AgeCommit message (Expand)Author
2020-10-04Shell: Move everything to the Shell namespaceAnotherTest
2020-09-30Shell: Track line numbers and the positions of some keywordsAnotherTest
2020-09-26Shell: Add a (very basic) formatterAnotherTest
2020-09-26Shell: Rename two 'fd' class members to have an 'm_' prefixAnotherTest
2020-09-26Shell: Use NonnullRefPtr to store non-null subnodesAnotherTest
2020-09-15Shell: Add 'match' expressionsAnotherTest
2020-09-14Shell: Complete named function parameters inside the function bodyAnotherTest
2020-09-14Shell: Add support for functionsAnotherTest
2020-09-09Shell: Add the (now) free subshell supportAnotherTest
2020-09-09Shell: Allow control structures to appear in pipe sequencesAnotherTest
2020-09-09Shell: Fix job control and backgroundingAnotherTest
2020-08-22Shell: Add 'if' expressionsAnotherTest
2020-08-22Shell: Mark AST::Background as would_execute if its subnode doesAnotherTest
2020-08-21Shell: Make 'for' loops read their input as an streamAnotherTest
2020-08-12Shell: Add create() factory function for PathRedirectionAndreas Kling
2020-08-12Shell: Fix another FdRedirection reference leakAndreas Kling
2020-08-12Shell: Moves pipelined processes to one process groupAnotherTest
2020-08-07Shell: Make Command::redirections a NonnullRefPtrVectorAndreas Kling
2020-08-07Shell: Make VariableDeclarations::Variable store NonnullRefPtrsAndreas Kling
2020-08-07Shell: Make resolve_without_cast() return NonnullRefPtr<Value>Andreas Kling
2020-08-07Shell: Store ListValue's values in a NonnullRefPtrVector<Value>Andreas Kling
2020-08-07Shell: Add some obvious move() calls in AST constructorsAndreas Kling
2020-08-04Shell: Use NonnullRefPtr to simplify some things in the parser/ASTAndreas Kling
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest
2020-08-04Shell: Add support for ARGV (and $*, $#)AnotherTest
2020-07-17Shell: Mark ForLoop as would_executeAnotherTest
2020-07-16Shell: Add a 'for' loopAnotherTest
2020-07-16Shell: Parse lists serially, and flatten them only when neededAnotherTest
2020-07-13Shell: Move out run_commands and expand_aliases to be Shell member fnsAnotherTest
2020-07-06Shell: Do not treat the ending newline as part of a commentAnotherTest
2020-07-05Shell: Initial support for 'option' completionsAnotherTest
2020-07-05Shell: Add a 'setopt' builtinAnotherTest
2020-07-05Shell: Show descriptions about syntax errorsAnotherTest
2020-07-05Shell: Mark And and Or nodes as execute nodesAnotherTest
2020-07-05Shell: Provide completions to Tilde and its Juxtaposition.AnotherTest
2020-07-05Shell: Allow commands in variables, and properly substitute them on useAnotherTest
2020-07-05Shell: Parse a pipe sequence inside $(...)AnotherTest
2020-07-05Shell: Expand Juxtaposition of lists to list productsAnotherTest
2020-07-05Shell: Switch to a new parser and ASTAnotherTest