Brain_Fuck/include/bf_tokenizer.h

40 lines
695 B
C
Raw Normal View History

2023-11-17 00:30:48 -05:00
#pragma once
/*
* Created by Brett on 17/11/23.
* Licensed under GNU General Public License V3.0
* See LICENSE file for license detail
*/
#ifndef BRAINFUCK_MISC_BF_TOKENIZER_H
#define BRAINFUCK_MISC_BF_TOKENIZER_H
#include <vector>
#include <string>
2023-11-17 02:06:09 -05:00
#include <optional>
2023-11-17 00:30:48 -05:00
enum class bf_token
{
INC_DP,
DEC_DP,
INC_DV,
DEC_DV,
PRINT,
READ,
OPEN,
CLOSE
};
2023-11-17 02:06:09 -05:00
struct token_t
{
bf_token token;
std::optional<std::string> name = {};
explicit token_t(bf_token token): token(token) {}
};
std::vector<token_t> tokenize(const std::string& program);
std::vector<token_t>& bf_name(std::vector<token_t>& tokens);
2023-11-17 00:30:48 -05:00
#endif //BRAINFUCK_MISC_BF_TOKENIZER_H