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

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

And operation between control flow nodes.

Definition at line 125 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 130 of file ControlFlow.py.

130 def __init__(self, lhs, rhs):
131 self.lhs = lhs
132 self.rhs = rhs
133

Member Function Documentation

◆ __repr__()

ControlFlow.AndNode.__repr__ ( self)

Definition at line 134 of file ControlFlow.py.

134 def __repr__(self):
135 return "(%r & %r)" % (self.lhs, self.rhs)
136

◆ _visitSubNodes()

ControlFlow.AndNode._visitSubNodes ( self,
visitor )
protected

Reimplemented from ControlFlow.ControlFlowNode.

Definition at line 137 of file ControlFlow.py.

137 def _visitSubNodes(self, visitor):
138 self.lhs.visitNode(visitor)
139 self.rhs.visitNode(visitor)
140
141

Member Data Documentation

◆ lhs

ControlFlow.AndNode.lhs = lhs

Definition at line 131 of file ControlFlow.py.

◆ rhs

ControlFlow.AndNode.rhs = rhs

Definition at line 132 of file ControlFlow.py.


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