SuccessionSourceHints

class SuccessionSourceHints

Whether to show the implicitly computed succession and transition sources.

This helps with ensuring that successions link the expected actions and states.

action A {
    first start;
    //* first start */ then fork f;
        //* first f */ then action a;
            //* first a */ then action b;
}
Members defined in SuccessionSourceHints (4 members)

successions

RW

Whether to show implicit sources for successions only.

toggle

RW

Toggle for all nested options.

transitions

RW

Whether to show implicit sources for transitions only.

__init__

Attributes

property successions: bool

Whether to show implicit sources for successions only.

action A {
    first start;
    //* first start */ then action a;
}
property toggle: syside.conf.Toggle

Toggle for all nested options.

  • on enables the default behaviour

  • off disables the default behaviour and all nested options

  • explicit disables the default behaviour. Same as on if there is no default behaviour not covered by nested options.

property transitions: bool

Whether to show implicit sources for transitions only.

action A {
    first start;
    //* first start */ then decide d;
        //* first d */ if 2 < 4 then done;
}

Methods

__init__() None