index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Shell
/
AST.h
Age
Commit message (
Expand
)
Author
2020-08-12
Shell: Add create() factory function for PathRedirection
Andreas Kling
2020-08-12
Shell: Fix another FdRedirection reference leak
Andreas Kling
2020-08-12
Shell: Moves pipelined processes to one process group
AnotherTest
2020-08-07
Shell: Make Command::redirections a NonnullRefPtrVector
Andreas Kling
2020-08-07
Shell: Make VariableDeclarations::Variable store NonnullRefPtrs
Andreas Kling
2020-08-07
Shell: Make resolve_without_cast() return NonnullRefPtr<Value>
Andreas Kling
2020-08-07
Shell: Store ListValue's values in a NonnullRefPtrVector<Value>
Andreas Kling
2020-08-07
Shell: Add some obvious move() calls in AST constructors
Andreas Kling
2020-08-04
Shell: Use NonnullRefPtr to simplify some things in the parser/AST
Andreas Kling
2020-08-04
Shell: Correct FdRedirection inheriting from two RefCounted bases
AnotherTest
2020-08-04
Shell: Add support for ARGV (and $*, $#)
AnotherTest
2020-07-17
Shell: Mark ForLoop as would_execute
AnotherTest
2020-07-16
Shell: Add a 'for' loop
AnotherTest
2020-07-16
Shell: Parse lists serially, and flatten them only when needed
AnotherTest
2020-07-13
Shell: Move out run_commands and expand_aliases to be Shell member fns
AnotherTest
2020-07-06
Shell: Do not treat the ending newline as part of a comment
AnotherTest
2020-07-05
Shell: Initial support for 'option' completions
AnotherTest
2020-07-05
Shell: Add a 'setopt' builtin
AnotherTest
2020-07-05
Shell: Show descriptions about syntax errors
AnotherTest
2020-07-05
Shell: Mark And and Or nodes as execute nodes
AnotherTest
2020-07-05
Shell: Provide completions to Tilde and its Juxtaposition.
AnotherTest
2020-07-05
Shell: Allow commands in variables, and properly substitute them on use
AnotherTest
2020-07-05
Shell: Parse a pipe sequence inside $(...)
AnotherTest
2020-07-05
Shell: Expand Juxtaposition of lists to list products
AnotherTest
2020-07-05
Shell: Switch to a new parser and AST
AnotherTest