fix increment operators on objects

This commit is contained in:
2026-02-10 17:17:36 -06:00
parent f44fb502be
commit f1a5072ff2
4 changed files with 203 additions and 2 deletions

View File

@@ -1644,6 +1644,8 @@ var parse = function(tokens, src, filename, tokenizer) {
operand.level = -1
}
}
} else if (operand != null) {
sem_check_assign_target(scope, operand)
}
return null
}