├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── lib ├── diff_match_patch.dart └── src │ ├── api.dart │ ├── common.dart │ ├── diff.dart │ ├── diff │ ├── cleanup.dart │ ├── delta.dart │ ├── diff.dart │ ├── half_match.dart │ ├── main.dart │ └── utils.dart │ ├── match.dart │ └── patch.dart ├── pubspec.yaml └── test ├── diff_test.dart ├── match_test.dart └── patch_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /lib/diff_match_patch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/diff_match_patch.dart -------------------------------------------------------------------------------- /lib/src/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/api.dart -------------------------------------------------------------------------------- /lib/src/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/common.dart -------------------------------------------------------------------------------- /lib/src/diff.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff.dart -------------------------------------------------------------------------------- /lib/src/diff/cleanup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/cleanup.dart -------------------------------------------------------------------------------- /lib/src/diff/delta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/delta.dart -------------------------------------------------------------------------------- /lib/src/diff/diff.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/diff.dart -------------------------------------------------------------------------------- /lib/src/diff/half_match.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/half_match.dart -------------------------------------------------------------------------------- /lib/src/diff/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/main.dart -------------------------------------------------------------------------------- /lib/src/diff/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/diff/utils.dart -------------------------------------------------------------------------------- /lib/src/match.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/match.dart -------------------------------------------------------------------------------- /lib/src/patch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/lib/src/patch.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/diff_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/test/diff_test.dart -------------------------------------------------------------------------------- /test/match_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/test/match_test.dart -------------------------------------------------------------------------------- /test/patch_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheyne/diff-match-patch/HEAD/test/patch_test.dart --------------------------------------------------------------------------------