Fix bug
This commit is contained in:
@@ -562,7 +562,7 @@ namespace Flax.Build.Bindings
|
|||||||
{
|
{
|
||||||
// Go up
|
// Go up
|
||||||
argStack.Pop();
|
argStack.Pop();
|
||||||
lastArg = argStack.Peek();
|
lastArg = argStack.Count != 0 ? argStack.Peek() : null;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (token.Type == TokenType.Comma)
|
if (token.Type == TokenType.Comma)
|
||||||
|
|||||||
Reference in New Issue
Block a user