Skip to content
Snippets Groups Projects
Commit 6137706a authored by Zbynek Slajchrt's avatar Zbynek Slajchrt
Browse files

A small fix in SetAttributeNode

parent 4e21219c
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ public abstract class SetAttributeNode extends AttributeAccessNode { ...@@ -78,7 +78,7 @@ public abstract class SetAttributeNode extends AttributeAccessNode {
@Cached("lookupShape(attrs)") Shape shape, @Cached("lookupShape(attrs)") Shape shape,
@Cached("lookupLocation(shape, name, value)") Location location) { @Cached("lookupLocation(shape, name, value)") Location location) {
try { try {
location.set(attrs, value); location.set(attrs, value, shape);
} catch (IncompatibleLocationException | FinalLocationException ex) { } catch (IncompatibleLocationException | FinalLocationException ex) {
RInternalError.reportError(ex); RInternalError.reportError(ex);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment