functions property
The functions in this library.
Implementation
@override
List<FunctionElement> get functions {
if (!_didResolveAllFunctions) {
resolver.resolveFunctions(this);
_didResolveAllFunctions = true;
}
return _elementsOfType<FunctionElement>();
}