Flutter Engine
The Flutter Engine
Public Member Functions | Static Public Attributes | List of all members
cpp_indexer.SymbolsIndex Class Reference

Public Member Functions

Optional[Locationtry_resolve (self, str ref)
 

Static Public Attributes

 default_factory
 

Detailed Description

Index of C++ symbols extracted from source.

Definition at line 98 of file cpp_indexer.py.

Member Function Documentation

◆ try_resolve()

Optional[Location] cpp_indexer.SymbolsIndex.try_resolve (   self,
str  ref 
)
Resolve the location of the given reference.

Definition at line 105 of file cpp_indexer.py.

105 def try_resolve(self, ref: str) -> Optional[Location]:
106 """Resolve the location of the given reference."""
107 loc = self._try_resolve_impl(ref)
108 if loc is not None:
109 return self._location_from_string(loc)
110 return None
111

Member Data Documentation

◆ default_factory

cpp_indexer.SymbolsIndex.default_factory
static

Definition at line 101 of file cpp_indexer.py.


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