Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
scripts.idlnode.IDLDictionary Class Reference
Inheritance diagram for scripts.idlnode.IDLDictionary:
scripts.idlnode.IDLNode

Public Member Functions

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

Public Attributes

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

Additional Inherited Members

- Protected Member Functions inherited from scripts.idlnode.IDLNode
 _extra_repr (self)
 
 _all_subnodes (self)
 
 _to_hashable (self, obj)
 
 _find_all (self, ast, label, max_results=sys.maxsize)
 
 _find_first (self, ast, label)
 
 _has (self, ast, label)
 
 _convert_label_to_field (self, label)
 
 _convert_all (self, ast, label, idlnode_ctor)
 
 _convert_first (self, ast, label, idlnode_ctor)
 
 _convert_ext_attrs (self, ast)
 
 _convert_annotations (self, ast)
 
 _convert_constants (self, ast, js_name)
 

Detailed Description

IDLDictionary node contains members,
as well as parent references.

Definition at line 796 of file idlnode.py.

Constructor & Destructor Documentation

◆ __init__()

scripts.idlnode.IDLDictionary.__init__ (   self,
  ast,
  id = False 
)
Initializes an IDLNode from a PegParser AST output.

Reimplemented from scripts.idlnode.IDLNode.

Definition at line 800 of file idlnode.py.

800 def __init__(self, ast, typedefDictionary=False):
801 IDLNode.__init__(self, ast)
802
803 self.javascript_binding_name = self.id
804 if (typedefDictionary):
805 # Dictionary is a typedef to a union.
806 self._convert_ext_attrs(None)
807 else:
808 self._convert_ext_attrs(ast)
809 self._convert_constants(ast, self.id)
810
811

Member Data Documentation

◆ id

scripts.idlnode.IDLDictionary.id

Definition at line 809 of file idlnode.py.

◆ javascript_binding_name

scripts.idlnode.IDLDictionary.javascript_binding_name

Definition at line 803 of file idlnode.py.


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