Skip to content

Error from one action is shown when executing another action, in the REPL #428

Open
@lasarojc

Description

@lasarojc

If an action is created with an error, it will fail execution. If another action, correct, is then created and executed, the error for the wrong one is again shown. See the excerpt below for an example.

>>> var myVar: bool

>>> action amWrong = all { myVar' = true, myVar' = true }

>>> amWrong
effects error: <input>:1:18 - error: Multiple updates of variable(s): myVar
...
true
>>> action amRight = all { myVar' = true }

>>> amRight
effects error: <input>:1:18 - error: Multiple updates of variable(s): myVar
...
true

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions