proxygen
cpp.ast.Expr Class Reference
Inheritance diagram for cpp.ast.Expr:
cpp.ast.Node cpp.ast.Node cpp.ast.Node cpp.ast.Delete cpp.ast.Delete cpp.ast.Delete cpp.ast.Friend cpp.ast.Friend cpp.ast.Friend cpp.ast.Return cpp.ast.Return cpp.ast.Return

Public Member Functions

def __init__ (self, start, end, expr)
 
def Requires (self, node)
 
def __str__ (self)
 
def __init__ (self, start, end, expr)
 
def Requires (self, node)
 
def __str__ (self)
 
def __init__ (self, start, end, expr)
 
def Requires (self, node)
 
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

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

Detailed Description

Definition at line 177 of file ast.py.

Constructor & Destructor Documentation

def cpp.ast.Expr.__init__ (   self,
  start,
  end,
  expr 
)

Definition at line 178 of file ast.py.

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

178  def __init__(self, start, end, expr):
179  Node.__init__(self, start, end)
180  self.expr = expr
181 
def __init__(self, start, end, expr)
Definition: ast.py:178
def cpp.ast.Expr.__init__ (   self,
  start,
  end,
  expr 
)

Definition at line 178 of file ast.py.

References cpp.ast.Expr.__init__(), and cpp.ast.Expr.expr.

178  def __init__(self, start, end, expr):
179  Node.__init__(self, start, end)
180  self.expr = expr
181 
def __init__(self, start, end, expr)
Definition: ast.py:178
def cpp.ast.Expr.__init__ (   self,
  start,
  end,
  expr 
)

Definition at line 178 of file ast.py.

References cpp.ast.Expr.__init__(), and cpp.ast.Expr.expr.

178  def __init__(self, start, end, expr):
179  Node.__init__(self, start, end)
180  self.expr = expr
181 
def __init__(self, start, end, expr)
Definition: ast.py:178

Member Function Documentation

def cpp.ast.Expr.__str__ (   self)

Definition at line 186 of file ast.py.

References cpp.ast.Node._StringHelper(), and cpp.ast.Expr.expr.

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

186  def __str__(self):
187  return self._StringHelper(self.__class__.__name__, str(self.expr))
188 
189 
def __str__(self)
Definition: ast.py:186
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def cpp.ast.Expr.__str__ (   self)

Definition at line 186 of file ast.py.

References cpp.ast.Expr.__str__(), cpp.ast.Node._StringHelper(), and cpp.ast.Expr.expr.

186  def __str__(self):
187  return self._StringHelper(self.__class__.__name__, str(self.expr))
188 
189 
def __str__(self)
Definition: ast.py:186
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def cpp.ast.Expr.__str__ (   self)

Definition at line 186 of file ast.py.

References cpp.ast.Expr.__str__(), cpp.ast.Node._StringHelper(), and cpp.ast.Expr.expr.

186  def __str__(self):
187  return self._StringHelper(self.__class__.__name__, str(self.expr))
188 
189 
def __str__(self)
Definition: ast.py:186
def _StringHelper(self, name, suffix)
Definition: ast.py:135
def cpp.ast.Expr.Requires (   self,
  node 
)

Definition at line 182 of file ast.py.

Referenced by cpp.ast.Expr.Requires().

182  def Requires(self, node):
183  # TODO(nnorwitz): impl.
184  return False
185 
def Requires(self, node)
Definition: ast.py:182
def cpp.ast.Expr.Requires (   self,
  node 
)

Definition at line 182 of file ast.py.

References cpp.ast.Expr.Requires().

182  def Requires(self, node):
183  # TODO(nnorwitz): impl.
184  return False
185 
def Requires(self, node)
Definition: ast.py:182
def cpp.ast.Expr.Requires (   self,
  node 
)

Definition at line 182 of file ast.py.

References cpp.ast.Expr.Requires().

182  def Requires(self, node):
183  # TODO(nnorwitz): impl.
184  return False
185 
def Requires(self, node)
Definition: ast.py:182

Member Data Documentation

cpp.ast.Expr.expr

Definition at line 180 of file ast.py.

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


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