Also check for opcode containing $ in value extraction
This commit is contained in:
parent
f5b9829e8f
commit
eac81e6733
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ void Parser::processOpcode()
|
|||
// if sequence of identifier chars and then "=", an opcode follows
|
||||
else if (isIdentifierChar(valueRaw[i])) {
|
||||
++i;
|
||||
while (i < valueSize && isIdentifierChar(valueRaw[i]))
|
||||
while (i < valueSize && (isIdentifierChar(valueRaw[i]) || valueRaw[i] == '$'))
|
||||
++i;
|
||||
if (i < valueSize && valueRaw[i] == '=')
|
||||
stop = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue