The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
ControlFlow.OrNode Class Reference
Inheritance diagram for ControlFlow.OrNode:
Collaboration diagram for ControlFlow.OrNode:

Public Member Functions

 __init__ (self, lhs, rhs)
 
 __repr__ (self)
 
- Public Member Functions inherited from ControlFlow.ControlFlowNode
 __and__ (self, rhs)
 
 __or__ (self, rhs)
 
 __invert__ (self)
 
 __rshift__ (self, rhs)
 
 visitNode (self, visitor)
 
 __eq__ (self, other)
 
 __hash__ (self)
 
 getFullName (self)
 

Public Attributes

 lhs = lhs
 
 rhs = rhs
 

Protected Member Functions

 _visitSubNodes (self, visitor)
 

Additional Inherited Members

- Protected Attributes inherited from ControlFlow.ControlFlowNode
 _fullname = makeSequences(self).getFullName()
 

Detailed Description

Or operation between control flow nodes.

Definition at line 142 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

ControlFlow.OrNode.__init__ ( self,
lhs,
rhs )

Definition at line 147 of file ControlFlow.py.

147 def __init__(self, lhs, rhs):
148 self.lhs = lhs
149 self.rhs = rhs
150

Member Function Documentation

◆ __repr__()

ControlFlow.OrNode.__repr__ ( self)

Definition at line 151 of file ControlFlow.py.

151 def __repr__(self):
152 return "(%r | %r)" % (self.lhs, self.rhs)
153

◆ _visitSubNodes()

ControlFlow.OrNode._visitSubNodes ( self,
visitor )
protected

Reimplemented from ControlFlow.ControlFlowNode.

Definition at line 154 of file ControlFlow.py.

154 def _visitSubNodes(self, visitor):
155 self.lhs.visitNode(visitor)
156 self.rhs.visitNode(visitor)
157
158

Member Data Documentation

◆ lhs

ControlFlow.OrNode.lhs = lhs

Definition at line 148 of file ControlFlow.py.

◆ rhs

ControlFlow.OrNode.rhs = rhs

Definition at line 149 of file ControlFlow.py.


The documentation for this class was generated from the following file: