mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
Utilities: Add cpp-lexer
This commit is contained in:
parent
85a84b0794
commit
feab5e8a3e
2 changed files with 33 additions and 0 deletions
|
@ -96,6 +96,7 @@ target_link_libraries(test-pthread LibThreading)
|
|||
target_link_libraries(tt LibPthread)
|
||||
target_link_libraries(unzip LibArchive LibCompress)
|
||||
target_link_libraries(zip LibArchive LibCompress LibCrypto)
|
||||
target_link_libraries(cpp-lexer LibCpp)
|
||||
target_link_libraries(cpp-parser LibCpp LibGUI)
|
||||
target_link_libraries(cpp-preprocessor LibCpp LibGUI)
|
||||
target_link_libraries(wasm LibWasm LibLine)
|
||||
|
|
32
Userland/Utilities/cpp-lexer.cpp
Normal file
32
Userland/Utilities/cpp-lexer.cpp
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* 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)) {
|
||||
perror("open");
|
||||
exit(1);
|
||||
}
|
||||
auto content = file->read_all();
|
||||
StringView content_view(content);
|
||||
|
||||
Cpp::Lexer lexer(content);
|
||||
auto tokens = lexer.lex();
|
||||
|
||||
for (auto& token : tokens) {
|
||||
outln("{}", token.to_string());
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue