resultSetAvailableToChildScopes property

  1. @override
Iterable<ResultSetAvailableInStatement> resultSetAvailableToChildScopes
override

All available result sets that can also be seen in child scopes.

Usually, this is the same list as the result sets being declared in this scope. However, some exceptions apply (see e.g. SourceScope).

Implementation

@override
Iterable<ResultSetAvailableInStatement> get resultSetAvailableToChildScopes {
  return allAvailableResultSets;
}