1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:57:34 +00:00

Shell: Make Subshell actually create a subshell

Previously, a "subshell" would just be executed in the parent shell.
This commit is contained in:
AnotherTest 2020-12-14 23:09:17 +03:30 committed by Andreas Kling
parent 72bd672da0
commit 4668dfa7c7
3 changed files with 4 additions and 21 deletions

View file

@ -1050,7 +1050,6 @@ private:
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
virtual HitTestResult hit_test_position(size_t) override;
virtual bool is_list() const override { return true; }
virtual bool would_execute() const override { return m_left->would_execute() || m_right->would_execute(); }
NonnullRefPtr<Node> m_left;
NonnullRefPtr<Node> m_right;
@ -1071,7 +1070,7 @@ private:
virtual RefPtr<Value> run(RefPtr<Shell>) override;
virtual void highlight_in_editor(Line::Editor&, Shell&, HighlightMetadata = {}) override;
virtual HitTestResult hit_test_position(size_t) override;
virtual bool would_execute() const override { return true; }
virtual bool would_execute() const override { return false; }
RefPtr<AST::Node> m_block;
};