bridgeReExports static method

List<({Set<String>? hide, Set<String>? show, String source, String target})> bridgeReExports()

GEN-107: Library re-exports declared by the bridged source libraries. Each tuple mirrors a Dart export '…' directive. Consumed by registerBridges via D4rt.registerLibraryReExport (mirrored on D4rtRunner in tom_d4rt_ast).

Implementation

static List<({String source, String target, Set<String>? show, Set<String>? hide})>
bridgeReExports() {
  return [
    (source: 'package:path/path.dart', target: 'package:path/src/context.dart', show: null, hide: {'createInternal'}),
    (source: 'package:path/path.dart', target: 'package:path/src/path_exception.dart', show: null, hide: null),
    (source: 'package:path/path.dart', target: 'package:path/src/path_map.dart', show: null, hide: null),
    (source: 'package:path/path.dart', target: 'package:path/src/path_set.dart', show: null, hide: null),
    (source: 'package:path/path.dart', target: 'package:path/src/style.dart', show: null, hide: null),
  ];
}