some improvements i think

This commit is contained in:
2026-01-16 13:32:36 +02:00
parent 49adb21b81
commit c69f589439
16 changed files with 338 additions and 5 deletions

27
asmrigs/brb/brb.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef BRB_H
#define BRB_H
#include "tier2/tokenizer.h"
#include "tier3/lexer.h"
#define B_LEXEL_INTERFACE_NAME "BLexer001"
enum EBWordType
{
BWORDTYPE_CONST_WORD,
BWORDTYPE_FUNCTION,
BWORDTYPE_FUNCTION_ARGS,
BWORDTYPE_FUNCTION_ARG,
BWORDTYPE_FUNCTION_SCOPE,
BWORDTYPE_RETURN,
};
abstract_class IBLexerWord: public ILexerWord
{
public:
};
#endif