Skip to content

Commit

Permalink
Implement isFieldEvaluated message in EnsoMultiValue
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Feb 13, 2025
1 parent 843198a commit b4acfc6
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,11 @@ final Object getField(
return delegate.getField(values[firstDispatch], index);
}

@ExportMessage
final boolean isFieldEvaluated(int index) {
return true;
}

@ExportMessage
final void setField(int index, Object value, @Bind("$node") Node here) {
var ctx = EnsoContext.get(here);
Expand Down

0 comments on commit b4acfc6

Please sign in to comment.