ladybird/Userland/Utilities/cpp-lexer.cpp

31 lines
810 B
C++
Raw Normal View History

2021-08-20 15:05:11 +03:00
/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
#include <LibCpp/Lexer.h>
int main(int argc, char** argv)
{
Core::ArgsParser args_parser;
const char* path = nullptr;
args_parser.add_positional_argument(path, "Cpp File", "cpp-file", Core::ArgsParser::Required::Yes);
args_parser.parse(argc, argv);
auto file = Core::File::construct(path);
if (!file->open(Core::OpenMode::ReadOnly)) {
warnln("Failed to open {}: {}", path, file->error_string());
2021-08-20 15:05:11 +03:00
exit(1);
}
auto content = file->read_all();
StringView content_view(content);
Cpp::Lexer lexer(content);
lexer.lex_iterable([](auto token) {
2021-08-20 15:05:11 +03:00
outln("{}", token.to_string());
});
2021-08-20 15:05:11 +03:00
}