зеркало из https://github.com/stride3d/xkslang.git
HLSL: Fix #1215: propagate error on seeing a type name instead of a variable.
This commit is contained in:
Родитель
eb2c0c72bf
Коммит
7420a761a3
|
@ -3051,6 +3051,8 @@ bool HlslGrammar::acceptPostfixExpression(TIntermTyped*& node)
|
|||
}
|
||||
if (! peekTokenClass(EHTokLeftParen)) {
|
||||
node = parseContext.handleVariable(idToken.loc, fullName);
|
||||
if (node == nullptr)
|
||||
return false;
|
||||
} else if (acceptFunctionCall(idToken.loc, *fullName, node, nullptr)) {
|
||||
// function_call (nothing else to do yet)
|
||||
} else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче