You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an onremove notify is used for a component in a system, it shouldn't be allowed to have it included in the system itself. The interpreter should give an error to prevent inclusion.
Example:
system NotifyRemoveExample {
readonly NotifyComponentA;
notify {
onremove NotifyComponentA; // Component with onremove is included in the system. Error!
}
}
The text was updated successfully, but these errors were encountered:
Kelwan
changed the title
Error on onremove notified component being included
Throw error on onremove notify component being included
May 16, 2024
When an
onremove
notify is used for a component in a system, it shouldn't be allowed to have it included in the system itself. The interpreter should give an error to prevent inclusion.Example:
The text was updated successfully, but these errors were encountered: