1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00
serenity/Shell
AnotherTest 9bd81f34a5 Shell: Make for/match/functions put their variables only in the new scope
Otherwise, a function would, for example, overwrite its parent scope:
```sh
foo(x) { }
x=1
foo 2 # would make x=2 otherwise
```
2020-12-29 16:55:43 +01:00
..
Tests Shell: Make for/match/functions put their variables only in the new scope 2020-12-29 16:55:43 +01:00
AST.cpp Shell: Make for/match/functions put their variables only in the new scope 2020-12-29 16:55:43 +01:00
AST.h Shell: Make Subshell actually create a subshell 2020-12-15 20:58:32 +01:00
Builtin.cpp Shell: Add a 'glob' builtin 2020-12-29 16:55:43 +01:00
CMakeLists.txt Shell: Make 'editor' a member of Shell, and provide a LibShell 2020-09-30 20:05:24 +02:00
Execution.h Shell: Move everything to the Shell namespace 2020-10-04 23:12:28 +02:00
Formatter.cpp Shell: Allow parts of globs to be named in match expressions 2020-10-29 11:53:01 +01:00
Formatter.h Shell: Remove unused private member and includes 2020-11-17 09:48:02 +01:00
Forward.h Shell: Add support for brace expansions 2020-10-25 10:09:27 +01:00
Job.cpp Shell: Do not bail early when printing jobs if waitpid() fails 2020-10-29 11:53:01 +01:00
Job.h Shell: Show termination signal if job did not exit cleanly 2020-12-08 23:34:38 +01:00
main.cpp Shell: Replace all dbg()'s with dbgln() 2020-12-08 23:34:38 +01:00
NodeVisitor.cpp Shell: Add support for brace expansions 2020-10-25 10:09:27 +01:00
NodeVisitor.h Shell: Add support for brace expansions 2020-10-25 10:09:27 +01:00
Parser.cpp Shell: Make <return> go to a new line when the command is incomplete 2020-12-08 23:34:38 +01:00
Parser.h Shell: Error out when an expression is nested too deep 2020-11-30 17:45:15 +01:00
Shell.cpp Shell: Make for/match/functions put their variables only in the new scope 2020-12-29 16:55:43 +01:00
Shell.h Shell: Add a 'glob' builtin 2020-12-29 16:55:43 +01:00