feat: 优化表达式解析器,添加终止符重置功能及代码格式调整

This commit is contained in:
2026-02-23 15:03:53 +08:00
parent abdb1d2fb0
commit 852dd27836
3 changed files with 56 additions and 21 deletions

View File

@@ -86,7 +86,7 @@ namespace Fig
std::uint8_t a = decodeA(inst);
switch (op)
{
case OpCode::Exit: {
case OpCode::Exit: { [[unlikely]]
return Value::GetNullInstance();
}