This commit is contained in:
Wojtek Figat
2025-01-24 12:24:52 +01:00
parent 80a44b5f5c
commit ae74d49b09

View File

@@ -562,7 +562,7 @@ namespace Flax.Build.Bindings
{
// Go up
argStack.Pop();
lastArg = argStack.Peek();
lastArg = argStack.Count != 0 ? argStack.Peek() : null;
continue;
}
if (token.Type == TokenType.Comma)