functions property

  1. @override
List<FunctionElement> get functions
override

The functions in this library.

Implementation

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