proxygen
cpp.ast.Goto Class Reference
Inheritance diagram for cpp.ast.Goto:
cpp.ast.Node cpp.ast.Node cpp.ast.Node

Public Member Functions

def __init__ (self, start, end, label)
 
def __str__ (self)
 
def __init__ (self, start, end, label)
 
def __str__ (self)
 
def __init__ (self, start, end, label)
 
def __str__ (self)
 
- Public Member Functions inherited from cpp.ast.Node
def __init__ (self, start, end)
 
def IsDeclaration (self)
 
def IsDefinition (self)
 
def IsExportable (self)
 
def Requires (self, node)
 
def XXX__str__ (self)
 
def __repr__ (self)
 
def __init__ (self, start, end)
 
def IsDeclaration (self)
 
def IsDefinition (self)
 
def IsExportable (self)
 
def Requires (self, node)
 
def XXX__str__ (self)
 
def __repr__ (self)
 
def __init__ (self, start, end)
 
def IsDeclaration (self)
 
def IsDefinition (self)
 
def IsExportable (self)
 
def Requires (self, node)
 
def XXX__str__ (self)
 
def __repr__ (self)
 

Public Attributes

 label
 
- Public Attributes inherited from cpp.ast.Node
 start
 
 end
 

Detailed Description

Definition at line 168 of file ast.py.

Constructor & Destructor Documentation

def cpp.ast.Goto.__init__ (   self,
  start,
  end,
  label 
)

Definition at line 169 of file ast.py.

Referenced by cpp.ast.Goto.__init__().

169  def __init__(self, start, end, label):
170  Node.__init__(self, start, end)
171  self.label = label
172 
def __init__(self, start, end, label)
Definition: ast.py:169
def cpp.ast.Goto.__init__ (   self,
  start,
  end,
  label 
)

Definition at line 169 of file ast.py.

References cpp.ast.Goto.__init__(), and cpp.ast.Goto.label.

169  def __init__(self, start, end, label):
170  Node.__init__(self, start, end)
171  self.label = label
172 
def __init__(self, start, end, label)
Definition: ast.py:169
def cpp.ast.Goto.__init__ (   self,
  start,
  end,
  label 
)

Definition at line 169 of file ast.py.

References cpp.ast.Goto.__init__(), and cpp.ast.Goto.label.

169  def __init__(self, start, end, label):
170  Node.__init__(self, start, end)
171  self.label = label
172 
def __init__(self, start, end, label)
Definition: ast.py:169

Member Function Documentation

def cpp.ast.Goto.__str__ (   self)

Definition at line 173 of file ast.py.

References cpp.ast.Node._StringHelper(), and cpp.ast.Goto.label.

Referenced by cpp.ast.Goto.__str__().

173  def __str__(self):
174  return self._StringHelper(self.__class__.__name__, str(self.label))
175 
176 
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def __str__(self)
Definition: ast.py:173
def cpp.ast.Goto.__str__ (   self)

Definition at line 173 of file ast.py.

References cpp.ast.Goto.__str__(), cpp.ast.Node._StringHelper(), and cpp.ast.Goto.label.

173  def __str__(self):
174  return self._StringHelper(self.__class__.__name__, str(self.label))
175 
176 
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def __str__(self)
Definition: ast.py:173
def cpp.ast.Goto.__str__ (   self)

Definition at line 173 of file ast.py.

References cpp.ast.Goto.__str__(), cpp.ast.Node._StringHelper(), and cpp.ast.Goto.label.

173  def __str__(self):
174  return self._StringHelper(self.__class__.__name__, str(self.label))
175 
176 
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def __str__(self)
Definition: ast.py:173

Member Data Documentation

cpp.ast.Goto.label

Definition at line 171 of file ast.py.

Referenced by cpp.ast.Goto.__init__(), and cpp.ast.Goto.__str__().


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