capabilityModuleNames function

List<String> capabilityModuleNames()

The base module names keyed in buildCapabilityTable, in scan order. The audit's bare-name fallback (lookupCapabilityByName) walks these prefixes, so this list MUST stay in sync with the modules present in the table — the capability_table group in capability_analyzer_test.dart guards against drift and against any bare-name collision that would make the fallback ambiguous.

Implementation

List<String> capabilityModuleNames() {
  return <String>[
    'std',
    'std_io',
    'std_fs',
    'std_collections',
    'std_convert',
    'std_time',
    'std_memory',
    'std_concurrency',
  ];
}