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
2021-01-03
Shell: Move AST::create() into the header and use it
AnotherTest
2020-12-30
AK+Format: Remove TypeErasedFormatParams& from format function.
asynts
2020-12-29
Shell: Add runtime errors and implement break/continue
AnotherTest
2020-12-15
Shell: Make Subshell actually create a subshell
AnotherTest
2020-12-08
Shell: Make <return> go to a new line when the command is incomplete
AnotherTest
2020-10-29
Shell: Allow parts of globs to be named in match expressions
AnotherTest
2020-10-29
Shell: Rename {source,dest}_fd to {old,new}_fd
AnotherTest
2020-10-26
Shell: Implement AK::Formatter::format() for AST::Command
AnotherTest
2020-10-25
Shell: Add support for brace expansions
AnotherTest
2020-10-04
Shell: Move everything to the Shell namespace
AnotherTest
2020-09-30
Shell: Track line numbers and the positions of some keywords
AnotherTest
2020-09-26
Shell: Add a (very basic) formatter
AnotherTest
2020-09-26
Shell: Rename two 'fd' class members to have an 'm_' prefix
AnotherTest
2020-09-26
Shell: Use NonnullRefPtr to store non-null subnodes
AnotherTest
2020-09-15
Shell: Add 'match' expressions
AnotherTest
2020-09-14
Shell: Complete named function parameters inside the function body
AnotherTest
2020-09-14
Shell: Add support for functions
AnotherTest
2020-09-09
Shell: Add the (now) free subshell support
AnotherTest
2020-09-09
Shell: Allow control structures to appear in pipe sequences
AnotherTest
2020-09-09
Shell: Fix job control and backgrounding
AnotherTest
2020-08-22
Shell: Add 'if' expressions
AnotherTest
2020-08-22
Shell: Mark AST::Background as would_execute if its subnode does
AnotherTest
2020-08-21
Shell: Make 'for' loops read their input as an stream
AnotherTest
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