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

Public Member Functions

def __init__ (self, ast, doc_js_interface_name)
 
def __init__ (self, ast, doc_js_interface_name, member_id=None)
 
- 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

 value
 
- Public Attributes inherited from scripts.idlnode.IDLMember
 type
 
 doc_js_interface_name
 
 is_fc_suppressed
 
 is_static
 
- Public Attributes inherited from scripts.idlnode.IDLNode
 id
 
 ext_attrs
 
 annotations
 
 members
 

Detailed Description

IDLNode specialization for 'const type name = value' declarations.

Definition at line 1107 of file idlnode.py.

Constructor & Destructor Documentation

◆ __init__()

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

Reimplemented from scripts.idlnode.IDLMember.

Definition at line 1110 of file idlnode.py.

1110 def __init__(self, ast, doc_js_interface_name):
1111 IDLMember.__init__(self, ast, doc_js_interface_name)
1112 self.value = self._find_first(ast, 'ConstExpr')
1113
1114

Member Data Documentation

◆ value

scripts.idlnode.IDLConstant.value

Definition at line 1112 of file idlnode.py.


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