1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

Shell: Add (basic) support for history event designators

Closes #4888
This commit is contained in:
AnotherTest 2021-01-11 13:04:59 +03:30 committed by Andreas Kling
parent 15fde85b21
commit 239472ba69
9 changed files with 457 additions and 19 deletions

View file

@ -121,6 +121,10 @@ void NodeVisitor::visit(const AST::Glob*)
{
}
void NodeVisitor::visit(const AST::HistoryEvent*)
{
}
void NodeVisitor::visit(const AST::Execute* node)
{
node->command()->visit(*this);