pipeOpNames top-level property

List<String> pipeOpNames
final

All pipe-op names, sorted alphabetically.

Derived from the spec table at module-load time. The canonical source consumed by the parser (for misspelling suggestions) and by the completer (for candidate enumeration).

Implementation

final List<String> pipeOpNames = List<String>.unmodifiable(
  _specsByName.keys.toList()..sort(),
);