Flutter Engine
The Flutter Engine
Public Member Functions | Public Attributes | List of all members
scripts.idlnode.IDLParentInterface Class Reference
Inheritance diagram for scripts.idlnode.IDLParentInterface:
scripts.idlnode.IDLNode

Public Member Functions

def __init__ (self, ast)
 
- Public Member Functions inherited from scripts.idlnode.IDLNode
def __init__ (self, ast, id=None)
 
def __repr__ (self)
 
def __eq__ (self, other)
 
def __hash__ (self)
 
def reset_id (self, newId)
 
def all (self, type_filter=None)
 
def to_dict (self)
 
def to_hash (self)
 

Public Attributes

 type
 
- Public Attributes inherited from scripts.idlnode.IDLNode
 id
 
 ext_attrs
 
 annotations
 
 members
 

Detailed Description

This IDLNode specialization is for 'Interface Child : Parent {}'
declarations.

Definition at line 992 of file idlnode.py.

Constructor & Destructor Documentation

◆ __init__()

def scripts.idlnode.IDLParentInterface.__init__ (   self,
  ast 
)
Initializes an IDLNode from a PegParser AST output.

Reimplemented from scripts.idlnode.IDLNode.

Definition at line 996 of file idlnode.py.

996 def __init__(self, ast):
997 IDLNode.__init__(self, ast)
998 self._convert_annotations(ast)
999 self.type = self._convert_first(ast, 'InterfaceType', IDLType)
1000
1001

Member Data Documentation

◆ type

scripts.idlnode.IDLParentInterface.type

Definition at line 999 of file idlnode.py.


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