Commit fb0bd1c8 authored by Daniel Clifford's avatar Daniel Clifford Committed by Commit Bot

[torque] Fix assert when trying to assign to a parameter

Change-Id: I9dc6a387ce5c9b97e21d20297b59b910daea3c6d
Reviewed-on: https://chromium-review.googlesource.com/1199503Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
Commit-Queue: Daniel Clifford <danno@chromium.org>
Cr-Commit-Position: refs/heads/master@{#55633}
parent 958b761d
......@@ -1494,13 +1494,13 @@ void ImplementationVisitor::GenerateAssignToLocation(
VisitResult assignment_value) {
if (reference.value != nullptr) {
Value* value = reference.value;
Variable* var = Variable::cast(value);
if (var->IsConst()) {
if (value->IsConst()) {
std::stringstream s;
s << "\"" << var->name()
s << "\"" << value->name()
<< "\" is declared const (maybe implicitly) and cannot be assigned to";
ReportError(s.str());
}
Variable* var = Variable::cast(value);
GenerateAssignToVariable(var, assignment_value);
} else if (auto access = FieldAccessExpression::DynamicCast(location)) {
GenerateCall(std::string(".") + access->field + "=",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment