classSourceUris static method
Returns a map of class names to their canonical source URIs.
Used for deduplication when the same class is exported through multiple barrels (e.g., tom_core_kernel and tom_core_server).
Implementation
static Map<String, String> classSourceUris() {
return {
'Context': 'package:path/src/context.dart',
'PathException': 'package:path/src/path_exception.dart',
'PathMap': 'package:path/src/path_map.dart',
'PathSet': 'package:path/src/path_set.dart',
'Style': 'package:path/src/style.dart',
};
}