mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
Shell: Add support for ARGV (and $*, $#)
This patchset also adds the 'shift' builtin, as well as the usual tests. closes #2948.
This commit is contained in:
parent
192b2383ac
commit
12af65c1c9
8 changed files with 79 additions and 1 deletions
|
@ -233,6 +233,7 @@ public:
|
|||
}
|
||||
|
||||
const Vector<RefPtr<Value>>& values() const { return m_contained_values; }
|
||||
Vector<RefPtr<Value>>& values() { return m_contained_values; }
|
||||
|
||||
private:
|
||||
Vector<RefPtr<Value>> m_contained_values;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue