├── .github └── workflows │ └── dart.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── example.dart ├── lib ├── src │ └── union.dart └── union.dart ├── pubspec.yaml ├── test ├── common.dart ├── custom_union_test.dart └── union_test.dart └── tool ├── common.dart ├── generate_merge.dart └── generate_merge_test.dart /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/src/union.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/lib/src/union.dart -------------------------------------------------------------------------------- /lib/union.dart: -------------------------------------------------------------------------------- 1 | export 'src/union.dart'; 2 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/test/common.dart -------------------------------------------------------------------------------- /test/custom_union_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/test/custom_union_test.dart -------------------------------------------------------------------------------- /test/union_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/test/union_test.dart -------------------------------------------------------------------------------- /tool/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/tool/common.dart -------------------------------------------------------------------------------- /tool/generate_merge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/tool/generate_merge.dart -------------------------------------------------------------------------------- /tool/generate_merge_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrousselGit/union/HEAD/tool/generate_merge_test.dart --------------------------------------------------------------------------------