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
{{ message }}
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
When the user has
interface sensor:
in event measure
and a state named measure and then proceeds to use measure as transition guard (instead of sensor.measure), SCT goes in a loop in TypeInferrer until it finally throws a StackOverflowError in the console. After some time, the validation is done and SCT is usable again, but not showing an Error Marker.
The problem view only shows Error executing EValidator.
Steps to reproduce:
Create new Statechart Model
Create transition from StateA back to StateA
In the transition guard, write StateA.
Also, SCT has no problem with the user declaring
internal:
event StateA
The text was updated successfully, but these errors were encountered:
We have a recursion after adding the shortcut method InferenceResult infer(EObject), in order to avoid calling InferenceResult infer(EObject, IValidationIssueAcceptor) with an null acceptor from outside. However "infer" just calls "inferTypeDispatch", which fallbacks to "infer" when no other implementation is found => Recursion
When the user has
interface sensor:
in event measure
and a state named
measure
and then proceeds to usemeasure
as transition guard (instead ofsensor.measure
), SCT goes in a loop in TypeInferrer until it finally throws a StackOverflowError in the console. After some time, the validation is done and SCT is usable again, but not showing an Error Marker.The problem view only shows
Error executing EValidator
.Steps to reproduce:
StateA
back toStateA
StateA
.Also, SCT has no problem with the user declaring
The text was updated successfully, but these errors were encountered: