summaryrefslogtreecommitdiff
path: root/Shell/AST.cpp
AgeCommit message (Expand)Author
2020-11-01Shell: Store LocalFrames as NonnullOwnPtr<LocalFrame> insteadAnotherTest
2020-10-29Shell: Allow parts of globs to be named in match expressionsAnotherTest
2020-10-29Shell: Add redirections to the formatted command stringAnotherTest
2020-10-29Shell: Rename {source,dest}_fd to {old,new}_fdAnotherTest
2020-10-26Shell: Implement AK::Formatter::format() for AST::CommandAnotherTest
2020-10-25Shell: Add support for brace expansionsAnotherTest
2020-10-04Shell: Fix closest command node detection in Pipes and SequencesAnotherTest
2020-10-04Shell: Move everything to the Shell namespaceAnotherTest
2020-09-30Shell: Track line numbers and the positions of some keywordsAnotherTest
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-15Shell: Make Node::resolve_as_list(nullptr) resolve to a 'pure' reprAnotherTest
2020-09-15AK: Remove OutputMemoryStream for DuplexMemoryStream.asynts
2020-09-14Shell: Allow builtins and functions as conditions for 'if'AnotherTest
2020-09-14Shell: Complete named function parameters inside the function bodyAnotherTest
2020-09-14Shell: Add support for functionsAnotherTest
2020-09-10Shell: Do not reset the terminal attributes when command is run in bgAnotherTest
2020-09-09Shell: Add the (now) free subshell supportAnotherTest
2020-09-09Shell: Allow control structures to appear in pipe sequencesAnotherTest
2020-09-09Shell: Announce job events at the right timesAnotherTest
2020-09-09Shell: Fix job control and backgroundingAnotherTest
2020-09-01AK: Move memory streams into their own header.asynts
2020-08-22Shell: Add 'if' expressionsAnotherTest
2020-08-22Shell: Actually process for loop entries as a streamAnotherTest
2020-08-22Shell: Do not flatten syntactic lists in for_each_entry()AnotherTest
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-19Shell: Name the pipe ends correctlyAnotherTest
2020-08-12Shell: Add create() factory function for PathRedirectionAndreas Kling
2020-08-12Shell: Fix another FdRedirection reference leakAndreas Kling
2020-08-12Shell: Eliminate reference leak in AST::Execute::run()AnotherTest
2020-08-12Shell: Moves pipelined processes to one process groupAnotherTest
2020-08-10Shell: Cancel a running for loop upon receiving any non-SIGINT signalAnotherTest
2020-08-09Shell: Stop a for loop upon receiving two consecutive interruptionsAnotherTest
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-06Shell: Make run_command() return a NonnullRefPtrVector<Job>Andreas 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-08-04Shell: factor out updating the path cache into a function.Mathieu PATUREL
2020-08-04Shell: highlight runnable commandsMathieu PATUREL
2020-07-25Shell: Don't crash when autocompleting a non-bare wordBen Wiederhake
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-12Shell: Recursively resolve aliasesAnotherTest
2020-07-06Shell: Keep the TTY on the same pgroup to get tty signalsAnotherTest