├── .circleci └── config.yml ├── .clang-format ├── .github └── workflows │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── LICENSE ├── README.md ├── appveyor.yml ├── benchmark ├── large-text-buffer.benchmark.js ├── marker-index.benchmark.js ├── native │ └── marker-index-benchmark.cc └── text-buffer.benchmark.js ├── binding.gyp ├── index.js ├── package.json ├── script ├── build-browser-version.sh ├── install-emscripten.sh ├── test-native.js └── test-with-debug-graph.sh ├── src ├── bindings │ ├── bindings.cc │ ├── em │ │ ├── auto-wrap.h │ │ ├── epilogue.js │ │ ├── marker-index.cc │ │ ├── patch.cc │ │ ├── point.cc │ │ ├── prologue.js │ │ ├── range.cc │ │ └── text-buffer.cc │ ├── marker-index-wrapper.cc │ ├── marker-index-wrapper.h │ ├── noop.h │ ├── number-conversion.h │ ├── patch-wrapper.cc │ ├── patch-wrapper.h │ ├── point-wrapper.cc │ ├── point-wrapper.h │ ├── range-wrapper.cc │ ├── range-wrapper.h │ ├── string-conversion.cc │ ├── string-conversion.h │ ├── text-buffer-snapshot-wrapper.cc │ ├── text-buffer-snapshot-wrapper.h │ ├── text-buffer-wrapper.cc │ ├── text-buffer-wrapper.h │ ├── text-reader.cc │ ├── text-reader.h │ ├── text-writer.cc │ └── text-writer.h └── core │ ├── encoding-conversion.cc │ ├── encoding-conversion.h │ ├── flat_set.h │ ├── libmba-diff.cc │ ├── libmba-diff.h │ ├── marker-index.cc │ ├── marker-index.h │ ├── optional.h │ ├── patch.cc │ ├── patch.h │ ├── point.cc │ ├── point.h │ ├── range.cc │ ├── range.h │ ├── regex.cc │ ├── regex.h │ ├── serializer.h │ ├── text-buffer.cc │ ├── text-buffer.h │ ├── text-diff.cc │ ├── text-diff.h │ ├── text-slice.cc │ ├── text-slice.h │ ├── text.cc │ └── text.h ├── test ├── js │ ├── helpers │ │ ├── point-helpers.js │ │ ├── test-document.js │ │ ├── text-helpers.js │ │ └── words.js │ ├── marker-index.test.js │ ├── patch.test.js │ └── text-buffer.test.js └── native │ ├── encoding-conversion-test.cc │ ├── patch-test.cc │ ├── test-helpers.cc │ ├── test-helpers.h │ ├── tests.cc │ ├── text-buffer-test.cc │ ├── text-diff-test.cc │ └── text-test.cc └── vendor ├── catch.hpp ├── libcxx ├── LICENSE.txt └── utf8-conversions.h └── pcre ├── 10.23 ├── AUTHORS ├── COPYING ├── LICENCE ├── NON-AUTOTOOLS-BUILD ├── README └── src │ ├── config.h.generic │ ├── config.h.in │ ├── pcre2.h.generic │ ├── pcre2.h.in │ ├── pcre2_auto_possess.c │ ├── pcre2_chartables.c.dist │ ├── pcre2_compile.c │ ├── pcre2_config.c │ ├── pcre2_context.c │ ├── pcre2_dfa_match.c │ ├── pcre2_error.c │ ├── pcre2_find_bracket.c │ ├── pcre2_internal.h │ ├── pcre2_intmodedep.h │ ├── pcre2_jit_compile.c │ ├── pcre2_jit_match.c │ ├── pcre2_jit_misc.c │ ├── pcre2_maketables.c │ ├── pcre2_match.c │ ├── pcre2_match_data.c │ ├── pcre2_newline.c │ ├── pcre2_ord2utf.c │ ├── pcre2_pattern_info.c │ ├── pcre2_printint.c │ ├── pcre2_serialize.c │ ├── pcre2_string_utils.c │ ├── pcre2_study.c │ ├── pcre2_substitute.c │ ├── pcre2_substring.c │ ├── pcre2_tables.c │ ├── pcre2_ucd.c │ ├── pcre2_ucp.h │ ├── pcre2_valid_utf.c │ ├── pcre2_xclass.c │ └── sljit │ ├── sljitConfig.h │ ├── sljitConfigInternal.h │ ├── sljitExecAllocator.c │ ├── sljitLir.c │ ├── sljitLir.h │ ├── sljitNativeARM_32.c │ ├── sljitNativeARM_64.c │ ├── sljitNativeARM_T2_32.c │ ├── sljitNativeMIPS_32.c │ ├── sljitNativeMIPS_64.c │ ├── sljitNativeMIPS_common.c │ ├── sljitNativePPC_32.c │ ├── sljitNativePPC_64.c │ ├── sljitNativePPC_common.c │ ├── sljitNativeSPARC_32.c │ ├── sljitNativeSPARC_common.c │ ├── sljitNativeTILEGX-encoder.c │ ├── sljitNativeTILEGX_64.c │ ├── sljitNativeX86_32.c │ ├── sljitNativeX86_64.c │ ├── sljitNativeX86_common.c │ └── sljitUtils.c ├── README.md ├── include ├── config.h └── pcre2.h ├── pcre.gyp └── pcre2_chartables.c /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark/large-text-buffer.benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/benchmark/large-text-buffer.benchmark.js -------------------------------------------------------------------------------- /benchmark/marker-index.benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/benchmark/marker-index.benchmark.js -------------------------------------------------------------------------------- /benchmark/native/marker-index-benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/benchmark/native/marker-index-benchmark.cc -------------------------------------------------------------------------------- /benchmark/text-buffer.benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/benchmark/text-buffer.benchmark.js -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/package.json -------------------------------------------------------------------------------- /script/build-browser-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/script/build-browser-version.sh -------------------------------------------------------------------------------- /script/install-emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/script/install-emscripten.sh -------------------------------------------------------------------------------- /script/test-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/script/test-native.js -------------------------------------------------------------------------------- /script/test-with-debug-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/script/test-with-debug-graph.sh -------------------------------------------------------------------------------- /src/bindings/bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/bindings.cc -------------------------------------------------------------------------------- /src/bindings/em/auto-wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/auto-wrap.h -------------------------------------------------------------------------------- /src/bindings/em/epilogue.js: -------------------------------------------------------------------------------- 1 | return Module; 2 | })); 3 | -------------------------------------------------------------------------------- /src/bindings/em/marker-index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/marker-index.cc -------------------------------------------------------------------------------- /src/bindings/em/patch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/patch.cc -------------------------------------------------------------------------------- /src/bindings/em/point.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/point.cc -------------------------------------------------------------------------------- /src/bindings/em/prologue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/prologue.js -------------------------------------------------------------------------------- /src/bindings/em/range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/range.cc -------------------------------------------------------------------------------- /src/bindings/em/text-buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/em/text-buffer.cc -------------------------------------------------------------------------------- /src/bindings/marker-index-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/marker-index-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/marker-index-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/marker-index-wrapper.h -------------------------------------------------------------------------------- /src/bindings/noop.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "nan.h" 4 | 5 | static void noop(const Nan::FunctionCallbackInfo&) {} 6 | -------------------------------------------------------------------------------- /src/bindings/number-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/number-conversion.h -------------------------------------------------------------------------------- /src/bindings/patch-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/patch-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/patch-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/patch-wrapper.h -------------------------------------------------------------------------------- /src/bindings/point-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/point-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/point-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/point-wrapper.h -------------------------------------------------------------------------------- /src/bindings/range-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/range-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/range-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/range-wrapper.h -------------------------------------------------------------------------------- /src/bindings/string-conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/string-conversion.cc -------------------------------------------------------------------------------- /src/bindings/string-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/string-conversion.h -------------------------------------------------------------------------------- /src/bindings/text-buffer-snapshot-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-buffer-snapshot-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/text-buffer-snapshot-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-buffer-snapshot-wrapper.h -------------------------------------------------------------------------------- /src/bindings/text-buffer-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-buffer-wrapper.cc -------------------------------------------------------------------------------- /src/bindings/text-buffer-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-buffer-wrapper.h -------------------------------------------------------------------------------- /src/bindings/text-reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-reader.cc -------------------------------------------------------------------------------- /src/bindings/text-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-reader.h -------------------------------------------------------------------------------- /src/bindings/text-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-writer.cc -------------------------------------------------------------------------------- /src/bindings/text-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/bindings/text-writer.h -------------------------------------------------------------------------------- /src/core/encoding-conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/encoding-conversion.cc -------------------------------------------------------------------------------- /src/core/encoding-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/encoding-conversion.h -------------------------------------------------------------------------------- /src/core/flat_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/flat_set.h -------------------------------------------------------------------------------- /src/core/libmba-diff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/libmba-diff.cc -------------------------------------------------------------------------------- /src/core/libmba-diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/libmba-diff.h -------------------------------------------------------------------------------- /src/core/marker-index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/marker-index.cc -------------------------------------------------------------------------------- /src/core/marker-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/marker-index.h -------------------------------------------------------------------------------- /src/core/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/optional.h -------------------------------------------------------------------------------- /src/core/patch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/patch.cc -------------------------------------------------------------------------------- /src/core/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/patch.h -------------------------------------------------------------------------------- /src/core/point.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/point.cc -------------------------------------------------------------------------------- /src/core/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/point.h -------------------------------------------------------------------------------- /src/core/range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/range.cc -------------------------------------------------------------------------------- /src/core/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/range.h -------------------------------------------------------------------------------- /src/core/regex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/regex.cc -------------------------------------------------------------------------------- /src/core/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/regex.h -------------------------------------------------------------------------------- /src/core/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/serializer.h -------------------------------------------------------------------------------- /src/core/text-buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-buffer.cc -------------------------------------------------------------------------------- /src/core/text-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-buffer.h -------------------------------------------------------------------------------- /src/core/text-diff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-diff.cc -------------------------------------------------------------------------------- /src/core/text-diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-diff.h -------------------------------------------------------------------------------- /src/core/text-slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-slice.cc -------------------------------------------------------------------------------- /src/core/text-slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text-slice.h -------------------------------------------------------------------------------- /src/core/text.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text.cc -------------------------------------------------------------------------------- /src/core/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/src/core/text.h -------------------------------------------------------------------------------- /test/js/helpers/point-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/helpers/point-helpers.js -------------------------------------------------------------------------------- /test/js/helpers/test-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/helpers/test-document.js -------------------------------------------------------------------------------- /test/js/helpers/text-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/helpers/text-helpers.js -------------------------------------------------------------------------------- /test/js/helpers/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/helpers/words.js -------------------------------------------------------------------------------- /test/js/marker-index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/marker-index.test.js -------------------------------------------------------------------------------- /test/js/patch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/patch.test.js -------------------------------------------------------------------------------- /test/js/text-buffer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/js/text-buffer.test.js -------------------------------------------------------------------------------- /test/native/encoding-conversion-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/encoding-conversion-test.cc -------------------------------------------------------------------------------- /test/native/patch-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/patch-test.cc -------------------------------------------------------------------------------- /test/native/test-helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/test-helpers.cc -------------------------------------------------------------------------------- /test/native/test-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/test-helpers.h -------------------------------------------------------------------------------- /test/native/tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/tests.cc -------------------------------------------------------------------------------- /test/native/text-buffer-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/text-buffer-test.cc -------------------------------------------------------------------------------- /test/native/text-diff-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/text-diff-test.cc -------------------------------------------------------------------------------- /test/native/text-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/test/native/text-test.cc -------------------------------------------------------------------------------- /vendor/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/catch.hpp -------------------------------------------------------------------------------- /vendor/libcxx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/libcxx/LICENSE.txt -------------------------------------------------------------------------------- /vendor/libcxx/utf8-conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/libcxx/utf8-conversions.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/AUTHORS -------------------------------------------------------------------------------- /vendor/pcre/10.23/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/COPYING -------------------------------------------------------------------------------- /vendor/pcre/10.23/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/LICENCE -------------------------------------------------------------------------------- /vendor/pcre/10.23/NON-AUTOTOOLS-BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/NON-AUTOTOOLS-BUILD -------------------------------------------------------------------------------- /vendor/pcre/10.23/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/README -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/config.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/config.h.generic -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/config.h.in -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2.h.generic -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2.h.in -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_auto_possess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_auto_possess.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_chartables.c.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_chartables.c.dist -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_compile.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_config.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_context.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_dfa_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_dfa_match.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_error.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_find_bracket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_find_bracket.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_internal.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_intmodedep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_intmodedep.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_jit_compile.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_jit_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_jit_match.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_jit_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_jit_misc.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_maketables.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_match.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_match_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_match_data.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_newline.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_ord2utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_ord2utf.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_pattern_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_pattern_info.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_printint.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_serialize.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_string_utils.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_study.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_substitute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_substitute.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_substring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_substring.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_tables.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_ucd.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_ucp.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_valid_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_valid_utf.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/pcre2_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/pcre2_xclass.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitConfig.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitConfigInternal.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitExecAllocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitExecAllocator.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitLir.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitLir.h -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeARM_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeARM_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeARM_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeARM_64.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeARM_T2_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeARM_T2_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeMIPS_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeMIPS_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeMIPS_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeMIPS_64.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeMIPS_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeMIPS_common.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativePPC_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativePPC_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativePPC_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativePPC_64.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativePPC_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativePPC_common.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeSPARC_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeSPARC_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeSPARC_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeSPARC_common.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeTILEGX-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeTILEGX-encoder.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeTILEGX_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeTILEGX_64.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeX86_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeX86_32.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeX86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeX86_64.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitNativeX86_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitNativeX86_common.c -------------------------------------------------------------------------------- /vendor/pcre/10.23/src/sljit/sljitUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/10.23/src/sljit/sljitUtils.c -------------------------------------------------------------------------------- /vendor/pcre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/README.md -------------------------------------------------------------------------------- /vendor/pcre/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/include/config.h -------------------------------------------------------------------------------- /vendor/pcre/include/pcre2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/include/pcre2.h -------------------------------------------------------------------------------- /vendor/pcre/pcre.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/pcre.gyp -------------------------------------------------------------------------------- /vendor/pcre/pcre2_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/superstring/HEAD/vendor/pcre/pcre2_chartables.c --------------------------------------------------------------------------------