diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-05-10 11:47:12 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-10 10:23:05 +0200 |
commit | 1d0d0e9d0015a18b5c6538a87ba41dcb19d04b03 (patch) | |
tree | a0a9e8c614f8358bcf75b19c97e6ce79dcbfff67 /Shell/Parser.h | |
parent | a862c230b16a05ca661c71c47f07df4bb1f9276d (diff) | |
download | serenity-1d0d0e9d0015a18b5c6538a87ba41dcb19d04b03.zip |
Shell: Parse comments
Diffstat (limited to 'Shell/Parser.h')
-rw-r--r-- | Shell/Parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Shell/Parser.h b/Shell/Parser.h index b284dd33a2..65f3ef44f7 100644 --- a/Shell/Parser.h +++ b/Shell/Parser.h @@ -36,6 +36,7 @@ struct Token { DoubleQuoted, UnterminatedSingleQuoted, UnterminatedDoubleQuoted, + Comment, Special, }; String text; |