Tokenizer Initial

This commit is contained in:
IlushaShurupov 2023-07-15 11:25:07 +03:00
parent facc17ec1b
commit 692994c2d3
11 changed files with 1848 additions and 3 deletions

View file

@ -136,8 +136,8 @@ namespace tp {
}
// output will be null if in TextEditing mode
[[nodiscard]] tChar* resize() {
if (!mData->getEditor()) mData->resize();
tChar* resize(uint1 size) {
if (!mData->getEditor()) mData->resize(size);
return mData->getBuffer();
}