1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:47:46 +00:00

Shell: Add a builtin that parses its sole argument and dumps its AST

Pretty useful for debugging.
This commit is contained in:
AnotherTest 2021-01-18 04:34:16 +03:30 committed by Andreas Kling
parent 39af1f8519
commit cd6e5c064b
2 changed files with 11 additions and 1 deletions

View file

@ -40,6 +40,15 @@ extern char** environ;
namespace Shell {
int Shell::builtin_dump(int argc, const char** argv)
{
if (argc != 2)
return 1;
Parser { argv[1] }.parse()->dump(0);
return 0;
}
int Shell::builtin_alias(int argc, const char** argv)
{
Vector<const char*> arguments;