Identifiers and atoms#
This section details the atoms of expressions: identifiers, literals, etc.
Identifiers#
- class ansys.scadeone.core.swan.PathIdExpr(path_id: PathIdentifier)#
Bases:
Expression
ansys.scadeone.core.swan.PathIdentifier
expression.- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- property path_id: PathIdentifier#
The identifier expression.
- class ansys.scadeone.core.swan.PortExpr(lunum: Luid | None = None, luid: Luid | None = None, is_self: bool | None = False)#
Bases:
Expression
Port information.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.LabelOrIndex(value: Identifier | Expression)#
Bases:
Expression
Stores an index as:
a label
ansys.scadeone.swan.Identifier
or,an expression
ansys.scadeone.swan.Expression
.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- property value: Identifier | Expression#
Return the index (expression or label).
- class ansys.scadeone.core.swan.LastExpr(id: Identifier)#
Bases:
Expression
Last expression.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property id: Identifier#
Identifier.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
Literal#
- class ansys.scadeone.core.swan.Literal(value: str)#
Bases:
Expression
Class for char, numeric, and Boolean expression.
Boolean value is stored as ‘true’ or ‘false’.
Char value is a ascii char with its value between simple quotes (ex: ‘a’) or an hexadecimal value.
Numeric value is INTEGER, TYPED_INTEGER, FLOAT, TYPED_FLOAT (see language grammar definition and
SwanRE
class).- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_float#
Return true when LiteralExpr is a float.
- property is_integer#
Return true when LiteralExpr is an integer.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
Patterns#
Patterns are used by CaseExpr
and ActivateWhen
classes
for the case pattern of and activate when constructs.
- class ansys.scadeone.core.swan.Pattern#
Bases:
SwanItem
Base class for patterns.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.PathIdPattern(path_id: PathIdentifier)#
Bases:
Pattern
Simple pattern: pattern ::= path_id.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- property path_id: PathIdentifier#
The path_id of pattern.
- class ansys.scadeone.core.swan.VariantPattern(path_id: PathIdentifier, captured: Identifier | None = None, underscore: bool | None = False)#
Bases:
Pattern
Variant pattern:
pattern ::=
path_id _: has_underscore is True
path_id { } has_underscore is False, has_capture is False
path_id { Id } : has_capture is True
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property captured: Identifier | None#
The variant pattern captured tag.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- property path_id: PathIdentifier#
The path_id of variant pattern.
- class ansys.scadeone.core.swan.CharPattern(value: str)#
Bases:
Pattern
Pattern: pattern ::= CHAR.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.BoolPattern(value: bool)#
Bases:
Pattern
Pattern: pattern ::= true | false.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.IntPattern(value: str, is_minus: bool | None = False)#
Bases:
Pattern
Pattern: pattern ::= [-] INTEGER | [-] TYPED_INTEGER.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.UnderscorePattern#
Bases:
Pattern
Pattern: pattern ::= _.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.DefaultPattern#
Bases:
Pattern
Pattern: pattern ::= default.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected: bool#
Tell if a construct item is syntactically protected with some markup and is stored as a string (without the markup).
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.
- class ansys.scadeone.core.swan.ProtectedPattern(data: str)#
Bases:
Pattern
,ProtectedItem
Protected pattern expression, i.e., saved as string if syntactically incorrect.
- static set_owner(owner: Self, children: Self | Iterable[Self])#
Helper to set owner as the owner of each item in the Iterable items.
- property is_protected#
Tell if item is syntactically protected and provided as a string.
- property module: ModuleBase#
Module containing the item.
- Returns:
ModuleBase: module container, see
ModuleBody
andModuleInterface
- property owner: Self#
Owner of current Swan construct.