capabilityNames function

List<String> capabilityNames()

The capability category names, in report-iteration order. Each program function is tagged with a subset of these; 'pure' means no side effects.

Implementation

List<String> capabilityNames() {
  return <String>[
    'pure',
    'io',
    'fs',
    'process',
    'time',
    'random',
    'memory',
    'concurrency',
    'network',
    'async',
  ];
}