esruby 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +22 -0
- data/bin/esruby +34 -0
- data/lib/esruby.rb +26 -0
- data/lib/esruby/build.rb +140 -0
- data/lib/esruby/build/configuration.rb +77 -0
- data/lib/esruby/gem.rb +5 -0
- data/lib/esruby/gem/specification.rb +35 -0
- data/resources/build_config.eruby +53 -0
- data/resources/cpp/esruby.cpp +64 -0
- data/resources/cpp/esruby.hpp +42 -0
- data/resources/cpp/main.cpp +9 -0
- data/resources/js/esruby.js +45 -0
- data/resources/mruby/AUTHORS +40 -0
- data/resources/mruby/CONTRIBUTING.md +68 -0
- data/resources/mruby/LEGAL +6 -0
- data/resources/mruby/MITL +20 -0
- data/resources/mruby/Makefile +17 -0
- data/resources/mruby/NEWS +13 -0
- data/resources/mruby/README.md +92 -0
- data/resources/mruby/Rakefile +152 -0
- data/resources/mruby/TODO +10 -0
- data/resources/mruby/appveyor.yml +38 -0
- data/resources/mruby/appveyor_config.rb +50 -0
- data/resources/mruby/benchmark/bm_ao_render.rb +314 -0
- data/resources/mruby/benchmark/bm_app_lc_fizzbuzz.rb +52 -0
- data/resources/mruby/benchmark/bm_fib.rb +7 -0
- data/resources/mruby/benchmark/bm_so_lists.rb +47 -0
- data/resources/mruby/benchmark/build_config_boxing.rb +28 -0
- data/resources/mruby/benchmark/build_config_cc.rb +13 -0
- data/resources/mruby/benchmark/plot.gpl +5 -0
- data/resources/mruby/bin/mirb +0 -0
- data/resources/mruby/bin/mrbc +0 -0
- data/resources/mruby/bin/mruby +0 -0
- data/resources/mruby/bin/mruby-strip +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/README.md +82 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrbgem.rake +63 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrblib/regexp_pcre.rb +232 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrblib/string_pcre.rb +333 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/132html +313 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/AUTHORS +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CMakeLists.txt +959 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/COPYING +5 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ChangeLog +4981 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CheckMan +67 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CleanTxt +113 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Detrail +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/HACKING +473 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/INSTALL +370 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/LICENCE +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Makefile.am +877 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Makefile.in +2917 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NEWS +611 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NON-AUTOTOOLS-BUILD +639 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NON-UNIX-USE +7 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/PrepareRelease +253 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/README +935 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunGrepTest +551 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunTest +1015 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunTest.bat +616 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/aclocal.m4 +1230 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/output.0 +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/output.1 +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/requests +273 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/traces.0 +2421 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/traces.1 +1144 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindEditline.cmake +17 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindReadline.cmake +29 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/compile +343 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config-cmake.h.in +54 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.guess +1552 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h +392 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h.generic +392 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h.in +343 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.sub +1804 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/configure +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/configure.ac +1082 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/depcomp +708 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/dftables.c +212 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/index.html +180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre-config.html +109 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre.html +204 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre16.html +383 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_assign_jit_stack.html +76 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_compile.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_compile2.html +112 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_config.html +91 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_copy_named_substring.html +65 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_copy_substring.html +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_dfa_exec.html +128 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_exec.html +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_study.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_substring.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_substring_list.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_fullinfo.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_named_substring.html +68 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_stringnumber.html +57 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_stringtable_entries.html +60 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_substring.html +64 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_substring_list.html +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_exec.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_stack_alloc.html +55 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_stack_free.html +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_maketables.html +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_pattern_to_host_byte_order.html +58 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_refcount.html +51 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_study.html +68 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_utf16_to_host_byte_order.html +57 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_version.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreapi.html +2786 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrebuild.html +517 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecallout.html +243 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecompat.html +216 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecpp.html +368 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcredemo.html +426 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcregrep.html +757 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrejit.html +458 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrelimits.html +86 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrematching.html +233 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrepartial.html +474 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrepattern.html +2953 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreperform.html +195 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreposix.html +292 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreprecompile.html +158 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcresample.html +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrestack.html +225 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcresyntax.html +521 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcretest.html +1082 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreunicode.html +270 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/index.html.src +180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre-config.1 +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre-config.txt +86 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre.3 +202 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre.txt +9909 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre16.3 +390 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre32.3 +389 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_assign_jit_stack.3 +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_compile.3 +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_compile2.3 +106 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_config.3 +76 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_copy_named_substring.3 +59 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_copy_substring.3 +52 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_dfa_exec.3 +125 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_exec.3 +103 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_study.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_substring.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_substring_list.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_fullinfo.3 +95 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_named_substring.3 +62 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_stringnumber.3 +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_stringtable_entries.3 +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_substring.3 +55 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_substring_list.3 +49 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_exec.3 +104 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_stack_alloc.3 +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_stack_free.3 +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_maketables.3 +33 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_pattern_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_refcount.3 +36 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_study.3 +56 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_utf16_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_utf32_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_version.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreapi.3 +2823 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrebuild.3 +520 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecallout.3 +214 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecompat.3 +185 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecpp.3 +348 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcregrep.1 +679 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcregrep.txt +740 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrejit.3 +437 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrelimits.3 +67 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrematching.3 +206 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrepartial.3 +445 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrepattern.3 +2983 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreperform.3 +177 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreposix.3 +270 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreprecompile.3 +151 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcresample.3 +99 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrestack.3 +215 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcresyntax.3 +496 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcretest.1 +1079 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcretest.txt +1012 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreunicode.3 +255 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/perltest.txt +42 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/install-sh +527 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre16.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre32.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcrecpp.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcreposix.pc.in +13 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ltmain.sh +9636 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ax_pthread.m4 +309 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/libtool.m4 +7844 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltoptions.m4 +369 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltsugar.m4 +123 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltversion.m4 +23 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/lt~obsolete.m4 +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/pcre_visibility.m4 +89 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp.bat +66 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp_c.txt +20 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp_l.txt +20 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/missing +331 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre-config.in +133 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h.generic +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h.in +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_byte_order.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_chartables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_config.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_dfa_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_fullinfo.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_get.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_globals.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_jit_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_maketables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_newline.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_ord2utf16.c +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_printint.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_refcount.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_string_utils.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_study.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_tables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_ucd.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_utf16_utils.c +130 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_valid_utf16.c +156 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_version.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_xclass.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_byte_order.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_chartables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_config.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_dfa_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_fullinfo.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_get.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_globals.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_jit_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_maketables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_newline.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_ord2utf32.c +82 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_printint.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_refcount.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_string_utils.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_study.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_tables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_ucd.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_utf32_utils.c +141 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_valid_utf32.c +131 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_version.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_xclass.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_byte_order.c +318 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_chartables.c +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_chartables.c.dist +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_compile.c +8386 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_config.c +186 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_dfa_exec.c +3582 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_exec.c +7049 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_fullinfo.c +231 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_get.c +662 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_globals.c +84 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_internal.h +2744 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_jit_compile.c +8560 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_jit_test.c +1614 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_maketables.c +151 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_newline.c +210 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_ord2utf8.c +94 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_printint.c +766 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_refcount.c +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner.cc +199 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner.h +172 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner_unittest.cc +159 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_string_utils.c +211 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece.cc +43 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece.h.in +179 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece_unittest.cc +150 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_study.c +1562 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_tables.c +655 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_ucd.c +3298 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_valid_utf8.c +312 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_version.c +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_xclass.c +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp.cc +922 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp.h +710 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp_internal.h +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp_unittest.cc +1291 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpparg.h.in +174 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcredemo.c +406 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcregexp.pas +845 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcregrep.c +3180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcreposix.c +419 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcreposix.h +146 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcretest.c +5488 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/perltest.pl +237 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitConfig.h +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitConfigInternal.h +484 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitExecAllocator.c +289 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitLir.c +1766 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitLir.h +985 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeARM_Thumb2.c +2008 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeARM_v5.c +2515 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeMIPS_32.c +404 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeMIPS_common.c +1881 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_32.c +269 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_64.c +421 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_common.c +2014 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeSPARC_32.c +164 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeSPARC_common.c +1348 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_32.c +547 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_64.c +810 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_common.c +2836 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitUtils.c +332 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepbinary +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepfilelist +3 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput +611 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput3 +15 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput8 +11 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinputv +4 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinputx +43 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/greplist +7 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutput +707 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutput8 +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutputN +16 -1
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/greppatN4 +2 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16BE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16BE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16LE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16LE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32BE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32BE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32LE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32LE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved8 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput1 +5306 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput10 +1337 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput11 +135 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput12 +89 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput13 +9 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput14 +329 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput15 +430 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput16 +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput17 +296 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput18 +296 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput19 +22 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput2 +3813 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput20 +19 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput21 +16 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput22 +13 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput23 +16 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput24 +77 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput25 +32 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput26 +80 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput3 +95 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput4 +624 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput5 +772 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput6 +1319 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput7 +672 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput8 +4801 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput9 +717 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinputEBC +121 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput1 +8798 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput10 +2726 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-16 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-32 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-8 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput12 +181 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput13 +21 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput14 +476 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput15 +1269 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput16 +121 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput17 +505 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput18-16 +1022 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput18-32 +1019 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput19 +88 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput2 +12484 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput20 +27 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput21-16 +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput21-32 +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput22-16 +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput22-32 +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput23 +42 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput24 +145 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput25 +79 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput26 +148 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput3 +169 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput4 +1094 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput5 +1849 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput6 +2137 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput7 +1473 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput8 +8019 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput9 +1371 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutputEBC +182 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/wintestinput3 +91 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/wintestoutput3 +166 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ucp.h +197 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/run_test.rb +23 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/src/mruby_regexp_pcre.c +364 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/matchdata.rb +94 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/regexp.rb +264 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/string.rb +201 -0
- data/resources/mruby/build_config.rb +152 -0
- data/resources/mruby/doc/guides/compile.md +488 -0
- data/resources/mruby/doc/guides/debugger.md +370 -0
- data/resources/mruby/doc/guides/gc-arena-howto.md +177 -0
- data/resources/mruby/doc/guides/mrbconf.md +146 -0
- data/resources/mruby/doc/guides/mrbgems.md +340 -0
- data/resources/mruby/doc/limitations.md +187 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake +23 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb +5 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +20 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/test/example.rb +7 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/mrbgem.rake +23 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/src/example.c +20 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/test/example.c +7 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/test/example.rb +3 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake +25 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb +5 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/test/example.rb +3 -0
- data/resources/mruby/examples/targets/build_config_ArduinoDue.rb +90 -0
- data/resources/mruby/examples/targets/build_config_IntelEdison.rb +69 -0
- data/resources/mruby/examples/targets/build_config_IntelGalileo.rb +106 -0
- data/resources/mruby/examples/targets/build_config_RX630.rb +81 -0
- data/resources/mruby/examples/targets/build_config_android_arm64-v8a.rb +26 -0
- data/resources/mruby/examples/targets/build_config_android_armeabi.rb +26 -0
- data/resources/mruby/examples/targets/build_config_android_armeabi_v7a_neon_hard.rb +28 -0
- data/resources/mruby/examples/targets/build_config_chipKITMax32.rb +86 -0
- data/resources/mruby/include/mrbconf.h +145 -0
- data/resources/mruby/include/mruby.h +1280 -0
- data/resources/mruby/include/mruby/array.h +279 -0
- data/resources/mruby/include/mruby/boxing_nan.h +102 -0
- data/resources/mruby/include/mruby/boxing_no.h +56 -0
- data/resources/mruby/include/mruby/boxing_word.h +136 -0
- data/resources/mruby/include/mruby/class.h +94 -0
- data/resources/mruby/include/mruby/common.h +72 -0
- data/resources/mruby/include/mruby/compile.h +194 -0
- data/resources/mruby/include/mruby/data.h +75 -0
- data/resources/mruby/include/mruby/debug.h +66 -0
- data/resources/mruby/include/mruby/dump.h +196 -0
- data/resources/mruby/include/mruby/error.h +75 -0
- data/resources/mruby/include/mruby/gc.h +91 -0
- data/resources/mruby/include/mruby/hash.h +182 -0
- data/resources/mruby/include/mruby/irep.h +62 -0
- data/resources/mruby/include/mruby/istruct.h +47 -0
- data/resources/mruby/include/mruby/khash.h +274 -0
- data/resources/mruby/include/mruby/numeric.h +161 -0
- data/resources/mruby/include/mruby/object.h +45 -0
- data/resources/mruby/include/mruby/opcode.h +161 -0
- data/resources/mruby/include/mruby/proc.h +131 -0
- data/resources/mruby/include/mruby/range.h +49 -0
- data/resources/mruby/include/mruby/re.h +16 -0
- data/resources/mruby/include/mruby/string.h +440 -0
- data/resources/mruby/include/mruby/throw.h +55 -0
- data/resources/mruby/include/mruby/value.h +309 -0
- data/resources/mruby/include/mruby/variable.h +138 -0
- data/resources/mruby/include/mruby/version.h +110 -0
- data/resources/mruby/lib/mruby-core-ext.rb +79 -0
- data/resources/mruby/lib/mruby/build.rb +355 -0
- data/resources/mruby/lib/mruby/build/command.rb +324 -0
- data/resources/mruby/lib/mruby/build/load_gems.rb +122 -0
- data/resources/mruby/lib/mruby/gem.rb +459 -0
- data/resources/mruby/lib/mruby/source.rb +30 -0
- data/resources/mruby/minirake +484 -0
- data/resources/mruby/mrbgems/default.gembox +82 -0
- data/resources/mruby/mrbgems/full-core.gembox +9 -0
- data/resources/mruby/mrbgems/mruby-array-ext/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +935 -0
- data/resources/mruby/mrbgems/mruby-array-ext/src/array.c +246 -0
- data/resources/mruby/mrbgems/mruby-array-ext/test/array.rb +422 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb +286 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +701 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake +9 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +505 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h +26 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c +240 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h +14 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +78 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h +13 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +436 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c +502 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c +58 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c +64 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +759 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +165 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +16 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h +20 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb +12 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +33 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +611 -0
- data/resources/mruby/mrbgems/mruby-bin-mrbc/mrbgem.rake +16 -0
- data/resources/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c +336 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake +30 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mruby-config +20 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat +42 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb +60 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +12 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +254 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb +73 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +155 -0
- data/resources/mruby/mrbgems/mruby-class-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-class-ext/src/class.c +68 -0
- data/resources/mruby/mrbgems/mruby-class-ext/test/module.rb +55 -0
- data/resources/mruby/mrbgems/mruby-compar-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-compar-ext/mrblib/compar.rb +31 -0
- data/resources/mruby/mrbgems/mruby-compiler/bintest/mrbc.rb +30 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/codegen.c +3083 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/keywords +50 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/lex.def +211 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/node.h +118 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/parse.y +6661 -0
- data/resources/mruby/mrbgems/mruby-compiler/mrbgem.rake +40 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb +813 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/test/enum.rb +185 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb +178 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb +53 -0
- data/resources/mruby/mrbgems/mruby-enumerator/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb +645 -0
- data/resources/mruby/mrbgems/mruby-enumerator/test/enumerator.rb +546 -0
- data/resources/mruby/mrbgems/mruby-error/mrbgem.rake +10 -0
- data/resources/mruby/mrbgems/mruby-error/src/exception.c +100 -0
- data/resources/mruby/mrbgems/mruby-error/test/exception.c +59 -0
- data/resources/mruby/mrbgems/mruby-error/test/exception.rb +55 -0
- data/resources/mruby/mrbgems/mruby-eval/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-eval/src/eval.c +346 -0
- data/resources/mruby/mrbgems/mruby-eval/test/eval.rb +101 -0
- data/resources/mruby/mrbgems/mruby-exit/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-exit/src/mruby-exit.c +24 -0
- data/resources/mruby/mrbgems/mruby-fiber/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-fiber/src/fiber.c +420 -0
- data/resources/mruby/mrbgems/mruby-fiber/test/fiber.rb +208 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/mrbgem.rake +8 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb +502 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +128 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/test/hash.rb +300 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/test/inline.c +83 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/test/inline.rb +151 -0
- data/resources/mruby/mrbgems/mruby-io/README.md +193 -0
- data/resources/mruby/mrbgems/mruby-io/include/mruby/ext/io.h +38 -0
- data/resources/mruby/mrbgems/mruby-io/mrbgem.rake +17 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/file.rb +208 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/file_constants.rb +29 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/io.rb +387 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/kernel.rb +15 -0
- data/resources/mruby/mrbgems/mruby-io/run_test.rb +26 -0
- data/resources/mruby/mrbgems/mruby-io/src/file.c +489 -0
- data/resources/mruby/mrbgems/mruby-io/src/file_test.c +381 -0
- data/resources/mruby/mrbgems/mruby-io/src/io.c +1320 -0
- data/resources/mruby/mrbgems/mruby-io/src/mruby_io_gem.c +20 -0
- data/resources/mruby/mrbgems/mruby-io/test/file.rb +197 -0
- data/resources/mruby/mrbgems/mruby-io/test/file_test.rb +117 -0
- data/resources/mruby/mrbgems/mruby-io/test/gc_filedes.sh +4 -0
- data/resources/mruby/mrbgems/mruby-io/test/io.rb +642 -0
- data/resources/mruby/mrbgems/mruby-io/test/mruby_io_test.c +256 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/mrblib/kernel.rb +13 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +264 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb +86 -0
- data/resources/mruby/mrbgems/mruby-math/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-math/src/math.c +783 -0
- data/resources/mruby/mrbgems/mruby-math/test/math.rb +152 -0
- data/resources/mruby/mrbgems/mruby-method/README.md +59 -0
- data/resources/mruby/mrbgems/mruby-method/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/kernel.rb +9 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/method.rb +20 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/unbound_method.rb +9 -0
- data/resources/mruby/mrbgems/mruby-method/src/method.c +418 -0
- data/resources/mruby/mrbgems/mruby-method/test/method.rb +425 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb +25 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c +102 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb +28 -0
- data/resources/mruby/mrbgems/mruby-object-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-object-ext/mrblib/object.rb +19 -0
- data/resources/mruby/mrbgems/mruby-object-ext/src/object.c +112 -0
- data/resources/mruby/mrbgems/mruby-object-ext/test/nil.rb +11 -0
- data/resources/mruby/mrbgems/mruby-object-ext/test/object.rb +53 -0
- data/resources/mruby/mrbgems/mruby-objectspace/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +187 -0
- data/resources/mruby/mrbgems/mruby-objectspace/test/objectspace.rb +60 -0
- data/resources/mruby/mrbgems/mruby-pack/README.md +70 -0
- data/resources/mruby/mrbgems/mruby-pack/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-pack/packtest.rb +157 -0
- data/resources/mruby/mrbgems/mruby-pack/run_test.rb +26 -0
- data/resources/mruby/mrbgems/mruby-pack/src/pack.c +1281 -0
- data/resources/mruby/mrbgems/mruby-pack/test/pack.rb +165 -0
- data/resources/mruby/mrbgems/mruby-print/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-print/mrblib/print.rb +64 -0
- data/resources/mruby/mrbgems/mruby-print/src/print.c +64 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/mrblib/proc.rb +42 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/src/proc.c +173 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/test/proc.c +62 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/test/proc.rb +96 -0
- data/resources/mruby/mrbgems/mruby-random/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-random/src/mt19937ar.c +224 -0
- data/resources/mruby/mrbgems/mruby-random/src/mt19937ar.h +80 -0
- data/resources/mruby/mrbgems/mruby-random/src/random.c +349 -0
- data/resources/mruby/mrbgems/mruby-random/src/random.h +12 -0
- data/resources/mruby/mrbgems/mruby-random/test/random.rb +88 -0
- data/resources/mruby/mrbgems/mruby-range-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-range-ext/mrblib/range.rb +31 -0
- data/resources/mruby/mrbgems/mruby-range-ext/src/range.c +176 -0
- data/resources/mruby/mrbgems/mruby-range-ext/test/range.rb +32 -0
- data/resources/mruby/mrbgems/mruby-socket/README.md +55 -0
- data/resources/mruby/mrbgems/mruby-socket/mrbgem.rake +17 -0
- data/resources/mruby/mrbgems/mruby-socket/mrblib/socket.rb +621 -0
- data/resources/mruby/mrbgems/mruby-socket/run_test.rb +28 -0
- data/resources/mruby/mrbgems/mruby-socket/src/const.cstub +453 -0
- data/resources/mruby/mrbgems/mruby-socket/src/const.def +163 -0
- data/resources/mruby/mrbgems/mruby-socket/src/gen.rb +17 -0
- data/resources/mruby/mrbgems/mruby-socket/src/socket.c +928 -0
- data/resources/mruby/mrbgems/mruby-socket/test/addrinfo.rb +91 -0
- data/resources/mruby/mrbgems/mruby-socket/test/basicsocket.rb +17 -0
- data/resources/mruby/mrbgems/mruby-socket/test/ipsocket.rb +44 -0
- data/resources/mruby/mrbgems/mruby-socket/test/socket.rb +38 -0
- data/resources/mruby/mrbgems/mruby-socket/test/sockettest.c +46 -0
- data/resources/mruby/mrbgems/mruby-socket/test/tcpsocket.rb +4 -0
- data/resources/mruby/mrbgems/mruby-socket/test/udpsocket.rb +16 -0
- data/resources/mruby/mrbgems/mruby-socket/test/unix.rb +130 -0
- data/resources/mruby/mrbgems/mruby-sprintf/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-sprintf/mrblib/string.rb +9 -0
- data/resources/mruby/mrbgems/mruby-sprintf/src/kernel.c +30 -0
- data/resources/mruby/mrbgems/mruby-sprintf/src/sprintf.c +1126 -0
- data/resources/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +110 -0
- data/resources/mruby/mrbgems/mruby-string-ext/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +368 -0
- data/resources/mruby/mrbgems/mruby-string-ext/src/string.c +804 -0
- data/resources/mruby/mrbgems/mruby-string-ext/test/string.rb +682 -0
- data/resources/mruby/mrbgems/mruby-struct/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-struct/mrblib/struct.rb +103 -0
- data/resources/mruby/mrbgems/mruby-struct/src/struct.c +726 -0
- data/resources/mruby/mrbgems/mruby-struct/test/struct.rb +205 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb +78 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +64 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +48 -0
- data/resources/mruby/mrbgems/mruby-test/README.md +7 -0
- data/resources/mruby/mrbgems/mruby-test/driver.c +175 -0
- data/resources/mruby/mrbgems/mruby-test/init_mrbtest.c +38 -0
- data/resources/mruby/mrbgems/mruby-test/mrbgem.rake +191 -0
- data/resources/mruby/mrbgems/mruby-time/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-time/mrblib/time.rb +9 -0
- data/resources/mruby/mrbgems/mruby-time/src/time.c +869 -0
- data/resources/mruby/mrbgems/mruby-time/test/time.rb +228 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb +11 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb +24 -0
- data/resources/mruby/mrblib/00class.rb +29 -0
- data/resources/mruby/mrblib/10error.rb +59 -0
- data/resources/mruby/mrblib/array.rb +243 -0
- data/resources/mruby/mrblib/compar.rb +84 -0
- data/resources/mruby/mrblib/enum.rb +348 -0
- data/resources/mruby/mrblib/float.rb +9 -0
- data/resources/mruby/mrblib/hash.rb +358 -0
- data/resources/mruby/mrblib/init_mrblib.c +11 -0
- data/resources/mruby/mrblib/kernel.rb +50 -0
- data/resources/mruby/mrblib/mrblib.rake +21 -0
- data/resources/mruby/mrblib/numeric.rb +163 -0
- data/resources/mruby/mrblib/range.rb +67 -0
- data/resources/mruby/mrblib/string.rb +275 -0
- data/resources/mruby/mruby-source.gemspec +18 -0
- data/resources/mruby/src/array.c +1251 -0
- data/resources/mruby/src/backtrace.c +285 -0
- data/resources/mruby/src/class.c +2546 -0
- data/resources/mruby/src/codedump.c +477 -0
- data/resources/mruby/src/compar.c +13 -0
- data/resources/mruby/src/crc.c +39 -0
- data/resources/mruby/src/debug.c +217 -0
- data/resources/mruby/src/dump.c +1106 -0
- data/resources/mruby/src/enum.c +14 -0
- data/resources/mruby/src/error.c +513 -0
- data/resources/mruby/src/error.h +3 -0
- data/resources/mruby/src/etc.c +246 -0
- data/resources/mruby/src/fmt_fp.c +374 -0
- data/resources/mruby/src/gc.c +1835 -0
- data/resources/mruby/src/hash.c +916 -0
- data/resources/mruby/src/init.c +51 -0
- data/resources/mruby/src/kernel.c +1264 -0
- data/resources/mruby/src/load.c +706 -0
- data/resources/mruby/src/mruby_core.rake +20 -0
- data/resources/mruby/src/numeric.c +1574 -0
- data/resources/mruby/src/object.c +618 -0
- data/resources/mruby/src/opcode.h +2 -0
- data/resources/mruby/src/pool.c +209 -0
- data/resources/mruby/src/print.c +47 -0
- data/resources/mruby/src/proc.c +313 -0
- data/resources/mruby/src/range.c +446 -0
- data/resources/mruby/src/state.c +307 -0
- data/resources/mruby/src/string.c +3025 -0
- data/resources/mruby/src/symbol.c +494 -0
- data/resources/mruby/src/value_array.h +27 -0
- data/resources/mruby/src/variable.c +982 -0
- data/resources/mruby/src/version.c +17 -0
- data/resources/mruby/src/vm.c +3020 -0
- data/resources/mruby/tasks/benchmark.rake +91 -0
- data/resources/mruby/tasks/gitlab.rake +118 -0
- data/resources/mruby/tasks/libmruby.rake +24 -0
- data/resources/mruby/tasks/mrbgems.rake +98 -0
- data/resources/mruby/tasks/toolchains/android.rake +321 -0
- data/resources/mruby/tasks/toolchains/clang.rake +9 -0
- data/resources/mruby/tasks/toolchains/gcc.rake +66 -0
- data/resources/mruby/tasks/toolchains/openwrt.rake +38 -0
- data/resources/mruby/tasks/toolchains/visualcpp.rake +68 -0
- data/resources/mruby/test/assert.rb +249 -0
- data/resources/mruby/test/bintest.rb +33 -0
- data/resources/mruby/test/report.rb +4 -0
- data/resources/mruby/test/t/argumenterror.rb +16 -0
- data/resources/mruby/test/t/array.rb +394 -0
- data/resources/mruby/test/t/basicobject.rb +11 -0
- data/resources/mruby/test/t/bs_block.rb +521 -0
- data/resources/mruby/test/t/bs_literal.rb +38 -0
- data/resources/mruby/test/t/class.rb +451 -0
- data/resources/mruby/test/t/codegen.rb +197 -0
- data/resources/mruby/test/t/comparable.rb +80 -0
- data/resources/mruby/test/t/ensure.rb +54 -0
- data/resources/mruby/test/t/enumerable.rb +134 -0
- data/resources/mruby/test/t/exception.rb +422 -0
- data/resources/mruby/test/t/false.rb +31 -0
- data/resources/mruby/test/t/float.rb +209 -0
- data/resources/mruby/test/t/gc.rb +45 -0
- data/resources/mruby/test/t/hash.rb +375 -0
- data/resources/mruby/test/t/indexerror.rb +6 -0
- data/resources/mruby/test/t/integer.rb +277 -0
- data/resources/mruby/test/t/iterations.rb +61 -0
- data/resources/mruby/test/t/kernel.rb +600 -0
- data/resources/mruby/test/t/lang.rb +74 -0
- data/resources/mruby/test/t/literals.rb +337 -0
- data/resources/mruby/test/t/localjumperror.rb +13 -0
- data/resources/mruby/test/t/methods.rb +109 -0
- data/resources/mruby/test/t/module.rb +914 -0
- data/resources/mruby/test/t/nameerror.rb +28 -0
- data/resources/mruby/test/t/nil.rb +39 -0
- data/resources/mruby/test/t/nomethoderror.rb +22 -0
- data/resources/mruby/test/t/numeric.rb +43 -0
- data/resources/mruby/test/t/object.rb +11 -0
- data/resources/mruby/test/t/proc.rb +180 -0
- data/resources/mruby/test/t/range.rb +95 -0
- data/resources/mruby/test/t/rangeerror.rb +6 -0
- data/resources/mruby/test/t/regexperror.rb +4 -0
- data/resources/mruby/test/t/runtimeerror.rb +6 -0
- data/resources/mruby/test/t/standarderror.rb +6 -0
- data/resources/mruby/test/t/string.rb +728 -0
- data/resources/mruby/test/t/superclass.rb +47 -0
- data/resources/mruby/test/t/symbol.rb +30 -0
- data/resources/mruby/test/t/syntax.rb +468 -0
- data/resources/mruby/test/t/true.rb +31 -0
- data/resources/mruby/test/t/typeerror.rb +6 -0
- data/resources/mruby/test/t/unicode.rb +39 -0
- data/resources/mruby/travis_config.rb +53 -0
- metadata +806 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/-- Tests for the 32-bit library only */
|
|
2
|
+
|
|
3
|
+
/-- Check maximum character size --/
|
|
4
|
+
|
|
5
|
+
/\x{110000}/
|
|
6
|
+
|
|
7
|
+
/\x{7fffffff}/
|
|
8
|
+
|
|
9
|
+
/\x{80000000}/
|
|
10
|
+
|
|
11
|
+
/\x{ffffffff}/
|
|
12
|
+
|
|
13
|
+
/\x{7fffffff}\x{7fffffff}/I
|
|
14
|
+
Capturing subpattern count = 0
|
|
15
|
+
No options
|
|
16
|
+
First char = \x{7fffffff}
|
|
17
|
+
Need char = \x{7fffffff}
|
|
18
|
+
|
|
19
|
+
/\x{80000000}\x{80000000}/I
|
|
20
|
+
Capturing subpattern count = 0
|
|
21
|
+
No options
|
|
22
|
+
First char = \x{80000000}
|
|
23
|
+
Need char = \x{80000000}
|
|
24
|
+
|
|
25
|
+
/\x{ffffffff}\x{ffffffff}/I
|
|
26
|
+
Capturing subpattern count = 0
|
|
27
|
+
No options
|
|
28
|
+
First char = \x{ffffffff}
|
|
29
|
+
Need char = \x{ffffffff}
|
|
30
|
+
|
|
31
|
+
/-- Non-UTF characters --/
|
|
32
|
+
|
|
33
|
+
/\C{2,3}/
|
|
34
|
+
\x{400000}\x{400001}\x{400002}\x{400003}
|
|
35
|
+
0: \x{400000}\x{400001}\x{400002}
|
|
36
|
+
|
|
37
|
+
/\x{400000}\x{800000}/iDZ
|
|
38
|
+
------------------------------------------------------------------
|
|
39
|
+
Bra
|
|
40
|
+
/i \x{400000}\x{800000}
|
|
41
|
+
Ket
|
|
42
|
+
End
|
|
43
|
+
------------------------------------------------------------------
|
|
44
|
+
Capturing subpattern count = 0
|
|
45
|
+
Options: caseless
|
|
46
|
+
First char = \x{400000}
|
|
47
|
+
Need char = \x{800000}
|
|
48
|
+
|
|
49
|
+
/-- Check character ranges --/
|
|
50
|
+
|
|
51
|
+
/[\H]/BZSI
|
|
52
|
+
------------------------------------------------------------------
|
|
53
|
+
Bra
|
|
54
|
+
[\x00-\x08\x0a-\x1f!-\x9f\x{a1}-\x{167f}\x{1681}-\x{180d}\x{180f}-\x{1fff}\x{200b}-\x{202e}\x{2030}-\x{205e}\x{2060}-\x{2fff}\x{3001}-\x{ffffffff}]
|
|
55
|
+
Ket
|
|
56
|
+
End
|
|
57
|
+
------------------------------------------------------------------
|
|
58
|
+
Capturing subpattern count = 0
|
|
59
|
+
No options
|
|
60
|
+
No first char
|
|
61
|
+
No need char
|
|
62
|
+
Subject length lower bound = 1
|
|
63
|
+
No set of starting bytes
|
|
64
|
+
|
|
65
|
+
/[\V]/BZSI
|
|
66
|
+
------------------------------------------------------------------
|
|
67
|
+
Bra
|
|
68
|
+
[\x00-\x09\x0e-\x84\x{86}-\x{2027}\x{202a}-\x{ffffffff}]
|
|
69
|
+
Ket
|
|
70
|
+
End
|
|
71
|
+
------------------------------------------------------------------
|
|
72
|
+
Capturing subpattern count = 0
|
|
73
|
+
No options
|
|
74
|
+
No first char
|
|
75
|
+
No need char
|
|
76
|
+
Subject length lower bound = 1
|
|
77
|
+
No set of starting bytes
|
|
78
|
+
|
|
79
|
+
/-- End of testinput25 --/
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
/-- Tests for the 32-bit library with UTF-32 support only */
|
|
2
|
+
|
|
3
|
+
/-- Non-UTF characters --/
|
|
4
|
+
|
|
5
|
+
/\x{110000}/8
|
|
6
|
+
Failed: character value in \x{...} sequence is too large at offset 9
|
|
7
|
+
|
|
8
|
+
/\C/8
|
|
9
|
+
\x{110000}
|
|
10
|
+
Error -10 (bad UTF-32 string) offset=0 reason=3
|
|
11
|
+
|
|
12
|
+
/-- Invalid UTF-32 --/
|
|
13
|
+
|
|
14
|
+
/noncharacter/8
|
|
15
|
+
\x{fffe}
|
|
16
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
17
|
+
\x{ffff}
|
|
18
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
19
|
+
\x{1fffe}
|
|
20
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
21
|
+
\x{1ffff}
|
|
22
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
23
|
+
\x{2fffe}
|
|
24
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
25
|
+
\x{2ffff}
|
|
26
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
27
|
+
\x{3fffe}
|
|
28
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
29
|
+
\x{3ffff}
|
|
30
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
31
|
+
\x{4fffe}
|
|
32
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
33
|
+
\x{4ffff}
|
|
34
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
35
|
+
\x{5fffe}
|
|
36
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
37
|
+
\x{5ffff}
|
|
38
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
39
|
+
\x{6fffe}
|
|
40
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
41
|
+
\x{6ffff}
|
|
42
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
43
|
+
\x{7fffe}
|
|
44
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
45
|
+
\x{7ffff}
|
|
46
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
47
|
+
\x{8fffe}
|
|
48
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
49
|
+
\x{8ffff}
|
|
50
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
51
|
+
\x{9fffe}
|
|
52
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
53
|
+
\x{9ffff}
|
|
54
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
55
|
+
\x{afffe}
|
|
56
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
57
|
+
\x{affff}
|
|
58
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
59
|
+
\x{bfffe}
|
|
60
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
61
|
+
\x{bffff}
|
|
62
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
63
|
+
\x{cfffe}
|
|
64
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
65
|
+
\x{cffff}
|
|
66
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
67
|
+
\x{dfffe}
|
|
68
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
69
|
+
\x{dffff}
|
|
70
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
71
|
+
\x{efffe}
|
|
72
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
73
|
+
\x{effff}
|
|
74
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
75
|
+
\x{ffffe}
|
|
76
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
77
|
+
\x{fffff}
|
|
78
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
79
|
+
\x{10fffe}
|
|
80
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
81
|
+
\x{10ffff}
|
|
82
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
83
|
+
\x{fdd0}
|
|
84
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
85
|
+
\x{fdd1}
|
|
86
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
87
|
+
\x{fdd2}
|
|
88
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
89
|
+
\x{fdd3}
|
|
90
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
91
|
+
\x{fdd4}
|
|
92
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
93
|
+
\x{fdd5}
|
|
94
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
95
|
+
\x{fdd6}
|
|
96
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
97
|
+
\x{fdd7}
|
|
98
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
99
|
+
\x{fdd8}
|
|
100
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
101
|
+
\x{fdd9}
|
|
102
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
103
|
+
\x{fdda}
|
|
104
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
105
|
+
\x{fddb}
|
|
106
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
107
|
+
\x{fddc}
|
|
108
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
109
|
+
\x{fddd}
|
|
110
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
111
|
+
\x{fdde}
|
|
112
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
113
|
+
\x{fddf}
|
|
114
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
115
|
+
\x{fde0}
|
|
116
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
117
|
+
\x{fde1}
|
|
118
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
119
|
+
\x{fde2}
|
|
120
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
121
|
+
\x{fde3}
|
|
122
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
123
|
+
\x{fde4}
|
|
124
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
125
|
+
\x{fde5}
|
|
126
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
127
|
+
\x{fde6}
|
|
128
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
129
|
+
\x{fde7}
|
|
130
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
131
|
+
\x{fde8}
|
|
132
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
133
|
+
\x{fde9}
|
|
134
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
135
|
+
\x{fdea}
|
|
136
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
137
|
+
\x{fdeb}
|
|
138
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
139
|
+
\x{fdec}
|
|
140
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
141
|
+
\x{fded}
|
|
142
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
143
|
+
\x{fdee}
|
|
144
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
145
|
+
\x{fdef}
|
|
146
|
+
Error -10 (bad UTF-32 string) offset=0 reason=2
|
|
147
|
+
|
|
148
|
+
/-- End of testinput26 --/
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
/-- This set of tests checks local-specific features, using the fr_FR locale.
|
|
2
|
+
It is not Perl-compatible. There is different version called wintestinput3
|
|
3
|
+
f or use on Windows, where the locale is called "french". --/
|
|
4
|
+
|
|
5
|
+
/^[\w]+/
|
|
6
|
+
*** Failers
|
|
7
|
+
No match
|
|
8
|
+
�cole
|
|
9
|
+
No match
|
|
10
|
+
|
|
11
|
+
/^[\w]+/Lfr_FR
|
|
12
|
+
�cole
|
|
13
|
+
0: �cole
|
|
14
|
+
|
|
15
|
+
/^[\w]+/
|
|
16
|
+
*** Failers
|
|
17
|
+
No match
|
|
18
|
+
�cole
|
|
19
|
+
No match
|
|
20
|
+
|
|
21
|
+
/^[\W]+/
|
|
22
|
+
�cole
|
|
23
|
+
0: \xc9
|
|
24
|
+
|
|
25
|
+
/^[\W]+/Lfr_FR
|
|
26
|
+
*** Failers
|
|
27
|
+
0: ***
|
|
28
|
+
�cole
|
|
29
|
+
No match
|
|
30
|
+
|
|
31
|
+
/[\b]/
|
|
32
|
+
\b
|
|
33
|
+
0: \x08
|
|
34
|
+
*** Failers
|
|
35
|
+
No match
|
|
36
|
+
a
|
|
37
|
+
No match
|
|
38
|
+
|
|
39
|
+
/[\b]/Lfr_FR
|
|
40
|
+
\b
|
|
41
|
+
0: \x08
|
|
42
|
+
*** Failers
|
|
43
|
+
No match
|
|
44
|
+
a
|
|
45
|
+
No match
|
|
46
|
+
|
|
47
|
+
/^\w+/
|
|
48
|
+
*** Failers
|
|
49
|
+
No match
|
|
50
|
+
�cole
|
|
51
|
+
No match
|
|
52
|
+
|
|
53
|
+
/^\w+/Lfr_FR
|
|
54
|
+
�cole
|
|
55
|
+
0: �cole
|
|
56
|
+
|
|
57
|
+
/(.+)\b(.+)/
|
|
58
|
+
�cole
|
|
59
|
+
0: \xc9cole
|
|
60
|
+
1: \xc9
|
|
61
|
+
2: cole
|
|
62
|
+
|
|
63
|
+
/(.+)\b(.+)/Lfr_FR
|
|
64
|
+
*** Failers
|
|
65
|
+
0: *** Failers
|
|
66
|
+
1: ***
|
|
67
|
+
2: Failers
|
|
68
|
+
�cole
|
|
69
|
+
No match
|
|
70
|
+
|
|
71
|
+
/�cole/i
|
|
72
|
+
�cole
|
|
73
|
+
0: \xc9cole
|
|
74
|
+
*** Failers
|
|
75
|
+
No match
|
|
76
|
+
�cole
|
|
77
|
+
No match
|
|
78
|
+
|
|
79
|
+
/�cole/iLfr_FR
|
|
80
|
+
�cole
|
|
81
|
+
0: �cole
|
|
82
|
+
�cole
|
|
83
|
+
0: �cole
|
|
84
|
+
|
|
85
|
+
/\w/IS
|
|
86
|
+
Capturing subpattern count = 0
|
|
87
|
+
No options
|
|
88
|
+
No first char
|
|
89
|
+
No need char
|
|
90
|
+
Subject length lower bound = 1
|
|
91
|
+
Starting byte set: 0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P
|
|
92
|
+
Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
|
|
93
|
+
|
|
94
|
+
/\w/ISLfr_FR
|
|
95
|
+
Capturing subpattern count = 0
|
|
96
|
+
No options
|
|
97
|
+
No first char
|
|
98
|
+
No need char
|
|
99
|
+
Subject length lower bound = 1
|
|
100
|
+
Starting byte set: 0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P
|
|
101
|
+
Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
|
|
102
|
+
� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � �
|
|
103
|
+
� � � � � � � � � � � � � � � � � � � � � � � � � � � �
|
|
104
|
+
|
|
105
|
+
/^[\xc8-\xc9]/iLfr_FR
|
|
106
|
+
�cole
|
|
107
|
+
0: �
|
|
108
|
+
�cole
|
|
109
|
+
0: �
|
|
110
|
+
|
|
111
|
+
/^[\xc8-\xc9]/Lfr_FR
|
|
112
|
+
�cole
|
|
113
|
+
0: �
|
|
114
|
+
*** Failers
|
|
115
|
+
No match
|
|
116
|
+
�cole
|
|
117
|
+
No match
|
|
118
|
+
|
|
119
|
+
/\W+/Lfr_FR
|
|
120
|
+
>>>\xaa<<<
|
|
121
|
+
0: >>>
|
|
122
|
+
>>>\xba<<<
|
|
123
|
+
0: >>>
|
|
124
|
+
|
|
125
|
+
/[\W]+/Lfr_FR
|
|
126
|
+
>>>\xaa<<<
|
|
127
|
+
0: >>>
|
|
128
|
+
>>>\xba<<<
|
|
129
|
+
0: >>>
|
|
130
|
+
|
|
131
|
+
/[^[:alpha:]]+/Lfr_FR
|
|
132
|
+
>>>\xaa<<<
|
|
133
|
+
0: >>>
|
|
134
|
+
>>>\xba<<<
|
|
135
|
+
0: >>>
|
|
136
|
+
|
|
137
|
+
/\w+/Lfr_FR
|
|
138
|
+
>>>\xaa<<<
|
|
139
|
+
0: �
|
|
140
|
+
>>>\xba<<<
|
|
141
|
+
0: �
|
|
142
|
+
|
|
143
|
+
/[\w]+/Lfr_FR
|
|
144
|
+
>>>\xaa<<<
|
|
145
|
+
0: �
|
|
146
|
+
>>>\xba<<<
|
|
147
|
+
0: �
|
|
148
|
+
|
|
149
|
+
/[[:alpha:]]+/Lfr_FR
|
|
150
|
+
>>>\xaa<<<
|
|
151
|
+
0: �
|
|
152
|
+
>>>\xba<<<
|
|
153
|
+
0: �
|
|
154
|
+
|
|
155
|
+
/[[:alpha:]][[:lower:]][[:upper:]]/DZLfr_FR
|
|
156
|
+
------------------------------------------------------------------
|
|
157
|
+
Bra
|
|
158
|
+
[A-Za-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\xff]
|
|
159
|
+
[a-z\xb5\xdf-\xf6\xf8-\xff]
|
|
160
|
+
[A-Z\xc0-\xd6\xd8-\xde]
|
|
161
|
+
Ket
|
|
162
|
+
End
|
|
163
|
+
------------------------------------------------------------------
|
|
164
|
+
Capturing subpattern count = 0
|
|
165
|
+
No options
|
|
166
|
+
No first char
|
|
167
|
+
No need char
|
|
168
|
+
|
|
169
|
+
/-- End of testinput3 --/
|
|
@@ -0,0 +1,1094 @@
|
|
|
1
|
+
/-- This set of tests is for UTF support, excluding Unicode properties. It is
|
|
2
|
+
compatible with all versions of Perl >= 5.10 and both the 8-bit and 16-bit
|
|
3
|
+
PCRE libraries. --/
|
|
4
|
+
|
|
5
|
+
/a.b/8
|
|
6
|
+
acb
|
|
7
|
+
0: acb
|
|
8
|
+
a\x7fb
|
|
9
|
+
0: a\x{7f}b
|
|
10
|
+
a\x{100}b
|
|
11
|
+
0: a\x{100}b
|
|
12
|
+
*** Failers
|
|
13
|
+
No match
|
|
14
|
+
a\nb
|
|
15
|
+
No match
|
|
16
|
+
|
|
17
|
+
/a(.{3})b/8
|
|
18
|
+
a\x{4000}xyb
|
|
19
|
+
0: a\x{4000}xyb
|
|
20
|
+
1: \x{4000}xy
|
|
21
|
+
a\x{4000}\x7fyb
|
|
22
|
+
0: a\x{4000}\x{7f}yb
|
|
23
|
+
1: \x{4000}\x{7f}y
|
|
24
|
+
a\x{4000}\x{100}yb
|
|
25
|
+
0: a\x{4000}\x{100}yb
|
|
26
|
+
1: \x{4000}\x{100}y
|
|
27
|
+
*** Failers
|
|
28
|
+
No match
|
|
29
|
+
a\x{4000}b
|
|
30
|
+
No match
|
|
31
|
+
ac\ncb
|
|
32
|
+
No match
|
|
33
|
+
|
|
34
|
+
/a(.*?)(.)/
|
|
35
|
+
a\xc0\x88b
|
|
36
|
+
0: a\xc0
|
|
37
|
+
1:
|
|
38
|
+
2: \xc0
|
|
39
|
+
|
|
40
|
+
/a(.*?)(.)/8
|
|
41
|
+
a\x{100}b
|
|
42
|
+
0: a\x{100}
|
|
43
|
+
1:
|
|
44
|
+
2: \x{100}
|
|
45
|
+
|
|
46
|
+
/a(.*)(.)/
|
|
47
|
+
a\xc0\x88b
|
|
48
|
+
0: a\xc0\x88b
|
|
49
|
+
1: \xc0\x88
|
|
50
|
+
2: b
|
|
51
|
+
|
|
52
|
+
/a(.*)(.)/8
|
|
53
|
+
a\x{100}b
|
|
54
|
+
0: a\x{100}b
|
|
55
|
+
1: \x{100}
|
|
56
|
+
2: b
|
|
57
|
+
|
|
58
|
+
/a(.)(.)/
|
|
59
|
+
a\xc0\x92bcd
|
|
60
|
+
0: a\xc0\x92
|
|
61
|
+
1: \xc0
|
|
62
|
+
2: \x92
|
|
63
|
+
|
|
64
|
+
/a(.)(.)/8
|
|
65
|
+
a\x{240}bcd
|
|
66
|
+
0: a\x{240}b
|
|
67
|
+
1: \x{240}
|
|
68
|
+
2: b
|
|
69
|
+
|
|
70
|
+
/a(.?)(.)/
|
|
71
|
+
a\xc0\x92bcd
|
|
72
|
+
0: a\xc0\x92
|
|
73
|
+
1: \xc0
|
|
74
|
+
2: \x92
|
|
75
|
+
|
|
76
|
+
/a(.?)(.)/8
|
|
77
|
+
a\x{240}bcd
|
|
78
|
+
0: a\x{240}b
|
|
79
|
+
1: \x{240}
|
|
80
|
+
2: b
|
|
81
|
+
|
|
82
|
+
/a(.??)(.)/
|
|
83
|
+
a\xc0\x92bcd
|
|
84
|
+
0: a\xc0
|
|
85
|
+
1:
|
|
86
|
+
2: \xc0
|
|
87
|
+
|
|
88
|
+
/a(.??)(.)/8
|
|
89
|
+
a\x{240}bcd
|
|
90
|
+
0: a\x{240}
|
|
91
|
+
1:
|
|
92
|
+
2: \x{240}
|
|
93
|
+
|
|
94
|
+
/a(.{3})b/8
|
|
95
|
+
a\x{1234}xyb
|
|
96
|
+
0: a\x{1234}xyb
|
|
97
|
+
1: \x{1234}xy
|
|
98
|
+
a\x{1234}\x{4321}yb
|
|
99
|
+
0: a\x{1234}\x{4321}yb
|
|
100
|
+
1: \x{1234}\x{4321}y
|
|
101
|
+
a\x{1234}\x{4321}\x{3412}b
|
|
102
|
+
0: a\x{1234}\x{4321}\x{3412}b
|
|
103
|
+
1: \x{1234}\x{4321}\x{3412}
|
|
104
|
+
*** Failers
|
|
105
|
+
No match
|
|
106
|
+
a\x{1234}b
|
|
107
|
+
No match
|
|
108
|
+
ac\ncb
|
|
109
|
+
No match
|
|
110
|
+
|
|
111
|
+
/a(.{3,})b/8
|
|
112
|
+
a\x{1234}xyb
|
|
113
|
+
0: a\x{1234}xyb
|
|
114
|
+
1: \x{1234}xy
|
|
115
|
+
a\x{1234}\x{4321}yb
|
|
116
|
+
0: a\x{1234}\x{4321}yb
|
|
117
|
+
1: \x{1234}\x{4321}y
|
|
118
|
+
a\x{1234}\x{4321}\x{3412}b
|
|
119
|
+
0: a\x{1234}\x{4321}\x{3412}b
|
|
120
|
+
1: \x{1234}\x{4321}\x{3412}
|
|
121
|
+
axxxxbcdefghijb
|
|
122
|
+
0: axxxxbcdefghijb
|
|
123
|
+
1: xxxxbcdefghij
|
|
124
|
+
a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
125
|
+
0: a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
126
|
+
1: \x{1234}\x{4321}\x{3412}\x{3421}
|
|
127
|
+
*** Failers
|
|
128
|
+
No match
|
|
129
|
+
a\x{1234}b
|
|
130
|
+
No match
|
|
131
|
+
|
|
132
|
+
/a(.{3,}?)b/8
|
|
133
|
+
a\x{1234}xyb
|
|
134
|
+
0: a\x{1234}xyb
|
|
135
|
+
1: \x{1234}xy
|
|
136
|
+
a\x{1234}\x{4321}yb
|
|
137
|
+
0: a\x{1234}\x{4321}yb
|
|
138
|
+
1: \x{1234}\x{4321}y
|
|
139
|
+
a\x{1234}\x{4321}\x{3412}b
|
|
140
|
+
0: a\x{1234}\x{4321}\x{3412}b
|
|
141
|
+
1: \x{1234}\x{4321}\x{3412}
|
|
142
|
+
axxxxbcdefghijb
|
|
143
|
+
0: axxxxb
|
|
144
|
+
1: xxxx
|
|
145
|
+
a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
146
|
+
0: a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
147
|
+
1: \x{1234}\x{4321}\x{3412}\x{3421}
|
|
148
|
+
*** Failers
|
|
149
|
+
No match
|
|
150
|
+
a\x{1234}b
|
|
151
|
+
No match
|
|
152
|
+
|
|
153
|
+
/a(.{3,5})b/8
|
|
154
|
+
a\x{1234}xyb
|
|
155
|
+
0: a\x{1234}xyb
|
|
156
|
+
1: \x{1234}xy
|
|
157
|
+
a\x{1234}\x{4321}yb
|
|
158
|
+
0: a\x{1234}\x{4321}yb
|
|
159
|
+
1: \x{1234}\x{4321}y
|
|
160
|
+
a\x{1234}\x{4321}\x{3412}b
|
|
161
|
+
0: a\x{1234}\x{4321}\x{3412}b
|
|
162
|
+
1: \x{1234}\x{4321}\x{3412}
|
|
163
|
+
axxxxbcdefghijb
|
|
164
|
+
0: axxxxb
|
|
165
|
+
1: xxxx
|
|
166
|
+
a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
167
|
+
0: a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
168
|
+
1: \x{1234}\x{4321}\x{3412}\x{3421}
|
|
169
|
+
axbxxbcdefghijb
|
|
170
|
+
0: axbxxb
|
|
171
|
+
1: xbxx
|
|
172
|
+
axxxxxbcdefghijb
|
|
173
|
+
0: axxxxxb
|
|
174
|
+
1: xxxxx
|
|
175
|
+
*** Failers
|
|
176
|
+
No match
|
|
177
|
+
a\x{1234}b
|
|
178
|
+
No match
|
|
179
|
+
axxxxxxbcdefghijb
|
|
180
|
+
No match
|
|
181
|
+
|
|
182
|
+
/a(.{3,5}?)b/8
|
|
183
|
+
a\x{1234}xyb
|
|
184
|
+
0: a\x{1234}xyb
|
|
185
|
+
1: \x{1234}xy
|
|
186
|
+
a\x{1234}\x{4321}yb
|
|
187
|
+
0: a\x{1234}\x{4321}yb
|
|
188
|
+
1: \x{1234}\x{4321}y
|
|
189
|
+
a\x{1234}\x{4321}\x{3412}b
|
|
190
|
+
0: a\x{1234}\x{4321}\x{3412}b
|
|
191
|
+
1: \x{1234}\x{4321}\x{3412}
|
|
192
|
+
axxxxbcdefghijb
|
|
193
|
+
0: axxxxb
|
|
194
|
+
1: xxxx
|
|
195
|
+
a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
196
|
+
0: a\x{1234}\x{4321}\x{3412}\x{3421}b
|
|
197
|
+
1: \x{1234}\x{4321}\x{3412}\x{3421}
|
|
198
|
+
axbxxbcdefghijb
|
|
199
|
+
0: axbxxb
|
|
200
|
+
1: xbxx
|
|
201
|
+
axxxxxbcdefghijb
|
|
202
|
+
0: axxxxxb
|
|
203
|
+
1: xxxxx
|
|
204
|
+
*** Failers
|
|
205
|
+
No match
|
|
206
|
+
a\x{1234}b
|
|
207
|
+
No match
|
|
208
|
+
axxxxxxbcdefghijb
|
|
209
|
+
No match
|
|
210
|
+
|
|
211
|
+
/^[a\x{c0}]/8
|
|
212
|
+
*** Failers
|
|
213
|
+
No match
|
|
214
|
+
\x{100}
|
|
215
|
+
No match
|
|
216
|
+
|
|
217
|
+
/(?<=aXb)cd/8
|
|
218
|
+
aXbcd
|
|
219
|
+
0: cd
|
|
220
|
+
|
|
221
|
+
/(?<=a\x{100}b)cd/8
|
|
222
|
+
a\x{100}bcd
|
|
223
|
+
0: cd
|
|
224
|
+
|
|
225
|
+
/(?<=a\x{100000}b)cd/8
|
|
226
|
+
a\x{100000}bcd
|
|
227
|
+
0: cd
|
|
228
|
+
|
|
229
|
+
/(?:\x{100}){3}b/8
|
|
230
|
+
\x{100}\x{100}\x{100}b
|
|
231
|
+
0: \x{100}\x{100}\x{100}b
|
|
232
|
+
*** Failers
|
|
233
|
+
No match
|
|
234
|
+
\x{100}\x{100}b
|
|
235
|
+
No match
|
|
236
|
+
|
|
237
|
+
/\x{ab}/8
|
|
238
|
+
\x{ab}
|
|
239
|
+
0: \x{ab}
|
|
240
|
+
\xc2\xab
|
|
241
|
+
0: \x{ab}
|
|
242
|
+
*** Failers
|
|
243
|
+
No match
|
|
244
|
+
\x00{ab}
|
|
245
|
+
No match
|
|
246
|
+
|
|
247
|
+
/(?<=(.))X/8
|
|
248
|
+
WXYZ
|
|
249
|
+
0: X
|
|
250
|
+
1: W
|
|
251
|
+
\x{256}XYZ
|
|
252
|
+
0: X
|
|
253
|
+
1: \x{256}
|
|
254
|
+
*** Failers
|
|
255
|
+
No match
|
|
256
|
+
XYZ
|
|
257
|
+
No match
|
|
258
|
+
|
|
259
|
+
/[^a]+/8g
|
|
260
|
+
bcd
|
|
261
|
+
0: bcd
|
|
262
|
+
\x{100}aY\x{256}Z
|
|
263
|
+
0: \x{100}
|
|
264
|
+
0: Y\x{256}Z
|
|
265
|
+
|
|
266
|
+
/^[^a]{2}/8
|
|
267
|
+
\x{100}bc
|
|
268
|
+
0: \x{100}b
|
|
269
|
+
|
|
270
|
+
/^[^a]{2,}/8
|
|
271
|
+
\x{100}bcAa
|
|
272
|
+
0: \x{100}bcA
|
|
273
|
+
|
|
274
|
+
/^[^a]{2,}?/8
|
|
275
|
+
\x{100}bca
|
|
276
|
+
0: \x{100}b
|
|
277
|
+
|
|
278
|
+
/[^a]+/8ig
|
|
279
|
+
bcd
|
|
280
|
+
0: bcd
|
|
281
|
+
\x{100}aY\x{256}Z
|
|
282
|
+
0: \x{100}
|
|
283
|
+
0: Y\x{256}Z
|
|
284
|
+
|
|
285
|
+
/^[^a]{2}/8i
|
|
286
|
+
\x{100}bc
|
|
287
|
+
0: \x{100}b
|
|
288
|
+
|
|
289
|
+
/^[^a]{2,}/8i
|
|
290
|
+
\x{100}bcAa
|
|
291
|
+
0: \x{100}bc
|
|
292
|
+
|
|
293
|
+
/^[^a]{2,}?/8i
|
|
294
|
+
\x{100}bca
|
|
295
|
+
0: \x{100}b
|
|
296
|
+
|
|
297
|
+
/\x{100}{0,0}/8
|
|
298
|
+
abcd
|
|
299
|
+
0:
|
|
300
|
+
|
|
301
|
+
/\x{100}?/8
|
|
302
|
+
abcd
|
|
303
|
+
0:
|
|
304
|
+
\x{100}\x{100}
|
|
305
|
+
0: \x{100}
|
|
306
|
+
|
|
307
|
+
/\x{100}{0,3}/8
|
|
308
|
+
\x{100}\x{100}
|
|
309
|
+
0: \x{100}\x{100}
|
|
310
|
+
\x{100}\x{100}\x{100}\x{100}
|
|
311
|
+
0: \x{100}\x{100}\x{100}
|
|
312
|
+
|
|
313
|
+
/\x{100}*/8
|
|
314
|
+
abce
|
|
315
|
+
0:
|
|
316
|
+
\x{100}\x{100}\x{100}\x{100}
|
|
317
|
+
0: \x{100}\x{100}\x{100}\x{100}
|
|
318
|
+
|
|
319
|
+
/\x{100}{1,1}/8
|
|
320
|
+
abcd\x{100}\x{100}\x{100}\x{100}
|
|
321
|
+
0: \x{100}
|
|
322
|
+
|
|
323
|
+
/\x{100}{1,3}/8
|
|
324
|
+
abcd\x{100}\x{100}\x{100}\x{100}
|
|
325
|
+
0: \x{100}\x{100}\x{100}
|
|
326
|
+
|
|
327
|
+
/\x{100}+/8
|
|
328
|
+
abcd\x{100}\x{100}\x{100}\x{100}
|
|
329
|
+
0: \x{100}\x{100}\x{100}\x{100}
|
|
330
|
+
|
|
331
|
+
/\x{100}{3}/8
|
|
332
|
+
abcd\x{100}\x{100}\x{100}XX
|
|
333
|
+
0: \x{100}\x{100}\x{100}
|
|
334
|
+
|
|
335
|
+
/\x{100}{3,5}/8
|
|
336
|
+
abcd\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}XX
|
|
337
|
+
0: \x{100}\x{100}\x{100}\x{100}\x{100}
|
|
338
|
+
|
|
339
|
+
/\x{100}{3,}/8
|
|
340
|
+
abcd\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}XX
|
|
341
|
+
0: \x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}
|
|
342
|
+
|
|
343
|
+
/(?<=a\x{100}{2}b)X/8+
|
|
344
|
+
Xyyya\x{100}\x{100}bXzzz
|
|
345
|
+
0: X
|
|
346
|
+
0+ zzz
|
|
347
|
+
|
|
348
|
+
/\D*/8
|
|
349
|
+
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
350
|
+
0: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
351
|
+
|
|
352
|
+
/\D*/8
|
|
353
|
+
\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}
|
|
354
|
+
0: \x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}\x{100}
|
|
355
|
+
|
|
356
|
+
/\D/8
|
|
357
|
+
1X2
|
|
358
|
+
0: X
|
|
359
|
+
1\x{100}2
|
|
360
|
+
0: \x{100}
|
|
361
|
+
|
|
362
|
+
/>\S/8
|
|
363
|
+
> >X Y
|
|
364
|
+
0: >X
|
|
365
|
+
> >\x{100} Y
|
|
366
|
+
0: >\x{100}
|
|
367
|
+
|
|
368
|
+
/\d/8
|
|
369
|
+
\x{100}3
|
|
370
|
+
0: 3
|
|
371
|
+
|
|
372
|
+
/\s/8
|
|
373
|
+
\x{100} X
|
|
374
|
+
0:
|
|
375
|
+
|
|
376
|
+
/\D+/8
|
|
377
|
+
12abcd34
|
|
378
|
+
0: abcd
|
|
379
|
+
*** Failers
|
|
380
|
+
0: *** Failers
|
|
381
|
+
1234
|
|
382
|
+
No match
|
|
383
|
+
|
|
384
|
+
/\D{2,3}/8
|
|
385
|
+
12abcd34
|
|
386
|
+
0: abc
|
|
387
|
+
12ab34
|
|
388
|
+
0: ab
|
|
389
|
+
*** Failers
|
|
390
|
+
0: ***
|
|
391
|
+
1234
|
|
392
|
+
No match
|
|
393
|
+
12a34
|
|
394
|
+
No match
|
|
395
|
+
|
|
396
|
+
/\D{2,3}?/8
|
|
397
|
+
12abcd34
|
|
398
|
+
0: ab
|
|
399
|
+
12ab34
|
|
400
|
+
0: ab
|
|
401
|
+
*** Failers
|
|
402
|
+
0: **
|
|
403
|
+
1234
|
|
404
|
+
No match
|
|
405
|
+
12a34
|
|
406
|
+
No match
|
|
407
|
+
|
|
408
|
+
/\d+/8
|
|
409
|
+
12abcd34
|
|
410
|
+
0: 12
|
|
411
|
+
*** Failers
|
|
412
|
+
No match
|
|
413
|
+
|
|
414
|
+
/\d{2,3}/8
|
|
415
|
+
12abcd34
|
|
416
|
+
0: 12
|
|
417
|
+
1234abcd
|
|
418
|
+
0: 123
|
|
419
|
+
*** Failers
|
|
420
|
+
No match
|
|
421
|
+
1.4
|
|
422
|
+
No match
|
|
423
|
+
|
|
424
|
+
/\d{2,3}?/8
|
|
425
|
+
12abcd34
|
|
426
|
+
0: 12
|
|
427
|
+
1234abcd
|
|
428
|
+
0: 12
|
|
429
|
+
*** Failers
|
|
430
|
+
No match
|
|
431
|
+
1.4
|
|
432
|
+
No match
|
|
433
|
+
|
|
434
|
+
/\S+/8
|
|
435
|
+
12abcd34
|
|
436
|
+
0: 12abcd34
|
|
437
|
+
*** Failers
|
|
438
|
+
0: ***
|
|
439
|
+
\ \
|
|
440
|
+
No match
|
|
441
|
+
|
|
442
|
+
/\S{2,3}/8
|
|
443
|
+
12abcd34
|
|
444
|
+
0: 12a
|
|
445
|
+
1234abcd
|
|
446
|
+
0: 123
|
|
447
|
+
*** Failers
|
|
448
|
+
0: ***
|
|
449
|
+
\ \
|
|
450
|
+
No match
|
|
451
|
+
|
|
452
|
+
/\S{2,3}?/8
|
|
453
|
+
12abcd34
|
|
454
|
+
0: 12
|
|
455
|
+
1234abcd
|
|
456
|
+
0: 12
|
|
457
|
+
*** Failers
|
|
458
|
+
0: **
|
|
459
|
+
\ \
|
|
460
|
+
No match
|
|
461
|
+
|
|
462
|
+
/>\s+</8+
|
|
463
|
+
12> <34
|
|
464
|
+
0: > <
|
|
465
|
+
0+ 34
|
|
466
|
+
*** Failers
|
|
467
|
+
No match
|
|
468
|
+
|
|
469
|
+
/>\s{2,3}</8+
|
|
470
|
+
ab> <cd
|
|
471
|
+
0: > <
|
|
472
|
+
0+ cd
|
|
473
|
+
ab> <ce
|
|
474
|
+
0: > <
|
|
475
|
+
0+ ce
|
|
476
|
+
*** Failers
|
|
477
|
+
No match
|
|
478
|
+
ab> <cd
|
|
479
|
+
No match
|
|
480
|
+
|
|
481
|
+
/>\s{2,3}?</8+
|
|
482
|
+
ab> <cd
|
|
483
|
+
0: > <
|
|
484
|
+
0+ cd
|
|
485
|
+
ab> <ce
|
|
486
|
+
0: > <
|
|
487
|
+
0+ ce
|
|
488
|
+
*** Failers
|
|
489
|
+
No match
|
|
490
|
+
ab> <cd
|
|
491
|
+
No match
|
|
492
|
+
|
|
493
|
+
/\w+/8
|
|
494
|
+
12 34
|
|
495
|
+
0: 12
|
|
496
|
+
*** Failers
|
|
497
|
+
0: Failers
|
|
498
|
+
+++=*!
|
|
499
|
+
No match
|
|
500
|
+
|
|
501
|
+
/\w{2,3}/8
|
|
502
|
+
ab cd
|
|
503
|
+
0: ab
|
|
504
|
+
abcd ce
|
|
505
|
+
0: abc
|
|
506
|
+
*** Failers
|
|
507
|
+
0: Fai
|
|
508
|
+
a.b.c
|
|
509
|
+
No match
|
|
510
|
+
|
|
511
|
+
/\w{2,3}?/8
|
|
512
|
+
ab cd
|
|
513
|
+
0: ab
|
|
514
|
+
abcd ce
|
|
515
|
+
0: ab
|
|
516
|
+
*** Failers
|
|
517
|
+
0: Fa
|
|
518
|
+
a.b.c
|
|
519
|
+
No match
|
|
520
|
+
|
|
521
|
+
/\W+/8
|
|
522
|
+
12====34
|
|
523
|
+
0: ====
|
|
524
|
+
*** Failers
|
|
525
|
+
0: ***
|
|
526
|
+
abcd
|
|
527
|
+
No match
|
|
528
|
+
|
|
529
|
+
/\W{2,3}/8
|
|
530
|
+
ab====cd
|
|
531
|
+
0: ===
|
|
532
|
+
ab==cd
|
|
533
|
+
0: ==
|
|
534
|
+
*** Failers
|
|
535
|
+
0: ***
|
|
536
|
+
a.b.c
|
|
537
|
+
No match
|
|
538
|
+
|
|
539
|
+
/\W{2,3}?/8
|
|
540
|
+
ab====cd
|
|
541
|
+
0: ==
|
|
542
|
+
ab==cd
|
|
543
|
+
0: ==
|
|
544
|
+
*** Failers
|
|
545
|
+
0: **
|
|
546
|
+
a.b.c
|
|
547
|
+
No match
|
|
548
|
+
|
|
549
|
+
/[\x{100}]/8
|
|
550
|
+
\x{100}
|
|
551
|
+
0: \x{100}
|
|
552
|
+
Z\x{100}
|
|
553
|
+
0: \x{100}
|
|
554
|
+
\x{100}Z
|
|
555
|
+
0: \x{100}
|
|
556
|
+
*** Failers
|
|
557
|
+
No match
|
|
558
|
+
|
|
559
|
+
/[Z\x{100}]/8
|
|
560
|
+
Z\x{100}
|
|
561
|
+
0: Z
|
|
562
|
+
\x{100}
|
|
563
|
+
0: \x{100}
|
|
564
|
+
\x{100}Z
|
|
565
|
+
0: \x{100}
|
|
566
|
+
*** Failers
|
|
567
|
+
No match
|
|
568
|
+
|
|
569
|
+
/[\x{100}\x{200}]/8
|
|
570
|
+
ab\x{100}cd
|
|
571
|
+
0: \x{100}
|
|
572
|
+
ab\x{200}cd
|
|
573
|
+
0: \x{200}
|
|
574
|
+
*** Failers
|
|
575
|
+
No match
|
|
576
|
+
|
|
577
|
+
/[\x{100}-\x{200}]/8
|
|
578
|
+
ab\x{100}cd
|
|
579
|
+
0: \x{100}
|
|
580
|
+
ab\x{200}cd
|
|
581
|
+
0: \x{200}
|
|
582
|
+
ab\x{111}cd
|
|
583
|
+
0: \x{111}
|
|
584
|
+
*** Failers
|
|
585
|
+
No match
|
|
586
|
+
|
|
587
|
+
/[z-\x{200}]/8
|
|
588
|
+
ab\x{100}cd
|
|
589
|
+
0: \x{100}
|
|
590
|
+
ab\x{200}cd
|
|
591
|
+
0: \x{200}
|
|
592
|
+
ab\x{111}cd
|
|
593
|
+
0: \x{111}
|
|
594
|
+
abzcd
|
|
595
|
+
0: z
|
|
596
|
+
ab|cd
|
|
597
|
+
0: |
|
|
598
|
+
*** Failers
|
|
599
|
+
No match
|
|
600
|
+
|
|
601
|
+
/[Q\x{100}\x{200}]/8
|
|
602
|
+
ab\x{100}cd
|
|
603
|
+
0: \x{100}
|
|
604
|
+
ab\x{200}cd
|
|
605
|
+
0: \x{200}
|
|
606
|
+
Q?
|
|
607
|
+
0: Q
|
|
608
|
+
*** Failers
|
|
609
|
+
No match
|
|
610
|
+
|
|
611
|
+
/[Q\x{100}-\x{200}]/8
|
|
612
|
+
ab\x{100}cd
|
|
613
|
+
0: \x{100}
|
|
614
|
+
ab\x{200}cd
|
|
615
|
+
0: \x{200}
|
|
616
|
+
ab\x{111}cd
|
|
617
|
+
0: \x{111}
|
|
618
|
+
Q?
|
|
619
|
+
0: Q
|
|
620
|
+
*** Failers
|
|
621
|
+
No match
|
|
622
|
+
|
|
623
|
+
/[Qz-\x{200}]/8
|
|
624
|
+
ab\x{100}cd
|
|
625
|
+
0: \x{100}
|
|
626
|
+
ab\x{200}cd
|
|
627
|
+
0: \x{200}
|
|
628
|
+
ab\x{111}cd
|
|
629
|
+
0: \x{111}
|
|
630
|
+
abzcd
|
|
631
|
+
0: z
|
|
632
|
+
ab|cd
|
|
633
|
+
0: |
|
|
634
|
+
Q?
|
|
635
|
+
0: Q
|
|
636
|
+
*** Failers
|
|
637
|
+
No match
|
|
638
|
+
|
|
639
|
+
/[\x{100}\x{200}]{1,3}/8
|
|
640
|
+
ab\x{100}cd
|
|
641
|
+
0: \x{100}
|
|
642
|
+
ab\x{200}cd
|
|
643
|
+
0: \x{200}
|
|
644
|
+
ab\x{200}\x{100}\x{200}\x{100}cd
|
|
645
|
+
0: \x{200}\x{100}\x{200}
|
|
646
|
+
*** Failers
|
|
647
|
+
No match
|
|
648
|
+
|
|
649
|
+
/[\x{100}\x{200}]{1,3}?/8
|
|
650
|
+
ab\x{100}cd
|
|
651
|
+
0: \x{100}
|
|
652
|
+
ab\x{200}cd
|
|
653
|
+
0: \x{200}
|
|
654
|
+
ab\x{200}\x{100}\x{200}\x{100}cd
|
|
655
|
+
0: \x{200}
|
|
656
|
+
*** Failers
|
|
657
|
+
No match
|
|
658
|
+
|
|
659
|
+
/[Q\x{100}\x{200}]{1,3}/8
|
|
660
|
+
ab\x{100}cd
|
|
661
|
+
0: \x{100}
|
|
662
|
+
ab\x{200}cd
|
|
663
|
+
0: \x{200}
|
|
664
|
+
ab\x{200}\x{100}\x{200}\x{100}cd
|
|
665
|
+
0: \x{200}\x{100}\x{200}
|
|
666
|
+
*** Failers
|
|
667
|
+
No match
|
|
668
|
+
|
|
669
|
+
/[Q\x{100}\x{200}]{1,3}?/8
|
|
670
|
+
ab\x{100}cd
|
|
671
|
+
0: \x{100}
|
|
672
|
+
ab\x{200}cd
|
|
673
|
+
0: \x{200}
|
|
674
|
+
ab\x{200}\x{100}\x{200}\x{100}cd
|
|
675
|
+
0: \x{200}
|
|
676
|
+
*** Failers
|
|
677
|
+
No match
|
|
678
|
+
|
|
679
|
+
/(?<=[\x{100}\x{200}])X/8
|
|
680
|
+
abc\x{200}X
|
|
681
|
+
0: X
|
|
682
|
+
abc\x{100}X
|
|
683
|
+
0: X
|
|
684
|
+
*** Failers
|
|
685
|
+
No match
|
|
686
|
+
X
|
|
687
|
+
No match
|
|
688
|
+
|
|
689
|
+
/(?<=[Q\x{100}\x{200}])X/8
|
|
690
|
+
abc\x{200}X
|
|
691
|
+
0: X
|
|
692
|
+
abc\x{100}X
|
|
693
|
+
0: X
|
|
694
|
+
abQX
|
|
695
|
+
0: X
|
|
696
|
+
*** Failers
|
|
697
|
+
No match
|
|
698
|
+
X
|
|
699
|
+
No match
|
|
700
|
+
|
|
701
|
+
/(?<=[\x{100}\x{200}]{3})X/8
|
|
702
|
+
abc\x{100}\x{200}\x{100}X
|
|
703
|
+
0: X
|
|
704
|
+
*** Failers
|
|
705
|
+
No match
|
|
706
|
+
abc\x{200}X
|
|
707
|
+
No match
|
|
708
|
+
X
|
|
709
|
+
No match
|
|
710
|
+
|
|
711
|
+
/[^\x{100}\x{200}]X/8
|
|
712
|
+
AX
|
|
713
|
+
0: AX
|
|
714
|
+
\x{150}X
|
|
715
|
+
0: \x{150}X
|
|
716
|
+
\x{500}X
|
|
717
|
+
0: \x{500}X
|
|
718
|
+
*** Failers
|
|
719
|
+
No match
|
|
720
|
+
\x{100}X
|
|
721
|
+
No match
|
|
722
|
+
\x{200}X
|
|
723
|
+
No match
|
|
724
|
+
|
|
725
|
+
/[^Q\x{100}\x{200}]X/8
|
|
726
|
+
AX
|
|
727
|
+
0: AX
|
|
728
|
+
\x{150}X
|
|
729
|
+
0: \x{150}X
|
|
730
|
+
\x{500}X
|
|
731
|
+
0: \x{500}X
|
|
732
|
+
*** Failers
|
|
733
|
+
No match
|
|
734
|
+
\x{100}X
|
|
735
|
+
No match
|
|
736
|
+
\x{200}X
|
|
737
|
+
No match
|
|
738
|
+
QX
|
|
739
|
+
No match
|
|
740
|
+
|
|
741
|
+
/[^\x{100}-\x{200}]X/8
|
|
742
|
+
AX
|
|
743
|
+
0: AX
|
|
744
|
+
\x{500}X
|
|
745
|
+
0: \x{500}X
|
|
746
|
+
*** Failers
|
|
747
|
+
No match
|
|
748
|
+
\x{100}X
|
|
749
|
+
No match
|
|
750
|
+
\x{150}X
|
|
751
|
+
No match
|
|
752
|
+
\x{200}X
|
|
753
|
+
No match
|
|
754
|
+
|
|
755
|
+
/[z-\x{100}]/8i
|
|
756
|
+
z
|
|
757
|
+
0: z
|
|
758
|
+
Z
|
|
759
|
+
0: Z
|
|
760
|
+
\x{100}
|
|
761
|
+
0: \x{100}
|
|
762
|
+
*** Failers
|
|
763
|
+
No match
|
|
764
|
+
\x{102}
|
|
765
|
+
No match
|
|
766
|
+
y
|
|
767
|
+
No match
|
|
768
|
+
|
|
769
|
+
/[\xFF]/
|
|
770
|
+
>\xff<
|
|
771
|
+
0: \xff
|
|
772
|
+
|
|
773
|
+
/[\xff]/8
|
|
774
|
+
>\x{ff}<
|
|
775
|
+
0: \x{ff}
|
|
776
|
+
|
|
777
|
+
/[^\xFF]/
|
|
778
|
+
XYZ
|
|
779
|
+
0: X
|
|
780
|
+
|
|
781
|
+
/[^\xff]/8
|
|
782
|
+
XYZ
|
|
783
|
+
0: X
|
|
784
|
+
\x{123}
|
|
785
|
+
0: \x{123}
|
|
786
|
+
|
|
787
|
+
/^[ac]*b/8
|
|
788
|
+
xb
|
|
789
|
+
No match
|
|
790
|
+
|
|
791
|
+
/^[ac\x{100}]*b/8
|
|
792
|
+
xb
|
|
793
|
+
No match
|
|
794
|
+
|
|
795
|
+
/^[^x]*b/8i
|
|
796
|
+
xb
|
|
797
|
+
No match
|
|
798
|
+
|
|
799
|
+
/^[^x]*b/8
|
|
800
|
+
xb
|
|
801
|
+
No match
|
|
802
|
+
|
|
803
|
+
/^\d*b/8
|
|
804
|
+
xb
|
|
805
|
+
No match
|
|
806
|
+
|
|
807
|
+
/(|a)/g8
|
|
808
|
+
catac
|
|
809
|
+
0:
|
|
810
|
+
1:
|
|
811
|
+
0:
|
|
812
|
+
1:
|
|
813
|
+
0: a
|
|
814
|
+
1: a
|
|
815
|
+
0:
|
|
816
|
+
1:
|
|
817
|
+
0:
|
|
818
|
+
1:
|
|
819
|
+
0: a
|
|
820
|
+
1: a
|
|
821
|
+
0:
|
|
822
|
+
1:
|
|
823
|
+
0:
|
|
824
|
+
1:
|
|
825
|
+
a\x{256}a
|
|
826
|
+
0:
|
|
827
|
+
1:
|
|
828
|
+
0: a
|
|
829
|
+
1: a
|
|
830
|
+
0:
|
|
831
|
+
1:
|
|
832
|
+
0:
|
|
833
|
+
1:
|
|
834
|
+
0: a
|
|
835
|
+
1: a
|
|
836
|
+
0:
|
|
837
|
+
1:
|
|
838
|
+
|
|
839
|
+
/^\x{85}$/8i
|
|
840
|
+
\x{85}
|
|
841
|
+
0: \x{85}
|
|
842
|
+
|
|
843
|
+
/^ሴ/8
|
|
844
|
+
ሴ
|
|
845
|
+
0: \x{1234}
|
|
846
|
+
|
|
847
|
+
/^\ሴ/8
|
|
848
|
+
ሴ
|
|
849
|
+
0: \x{1234}
|
|
850
|
+
|
|
851
|
+
"(?s)(.{1,5})"8
|
|
852
|
+
abcdefg
|
|
853
|
+
0: abcde
|
|
854
|
+
1: abcde
|
|
855
|
+
ab
|
|
856
|
+
0: ab
|
|
857
|
+
1: ab
|
|
858
|
+
|
|
859
|
+
/a*\x{100}*\w/8
|
|
860
|
+
a
|
|
861
|
+
0: a
|
|
862
|
+
|
|
863
|
+
/\S\S/8g
|
|
864
|
+
A\x{a3}BC
|
|
865
|
+
0: A\x{a3}
|
|
866
|
+
0: BC
|
|
867
|
+
|
|
868
|
+
/\S{2}/8g
|
|
869
|
+
A\x{a3}BC
|
|
870
|
+
0: A\x{a3}
|
|
871
|
+
0: BC
|
|
872
|
+
|
|
873
|
+
/\W\W/8g
|
|
874
|
+
+\x{a3}==
|
|
875
|
+
0: +\x{a3}
|
|
876
|
+
0: ==
|
|
877
|
+
|
|
878
|
+
/\W{2}/8g
|
|
879
|
+
+\x{a3}==
|
|
880
|
+
0: +\x{a3}
|
|
881
|
+
0: ==
|
|
882
|
+
|
|
883
|
+
/\S/8g
|
|
884
|
+
\x{442}\x{435}\x{441}\x{442}
|
|
885
|
+
0: \x{442}
|
|
886
|
+
0: \x{435}
|
|
887
|
+
0: \x{441}
|
|
888
|
+
0: \x{442}
|
|
889
|
+
|
|
890
|
+
/[\S]/8g
|
|
891
|
+
\x{442}\x{435}\x{441}\x{442}
|
|
892
|
+
0: \x{442}
|
|
893
|
+
0: \x{435}
|
|
894
|
+
0: \x{441}
|
|
895
|
+
0: \x{442}
|
|
896
|
+
|
|
897
|
+
/\D/8g
|
|
898
|
+
\x{442}\x{435}\x{441}\x{442}
|
|
899
|
+
0: \x{442}
|
|
900
|
+
0: \x{435}
|
|
901
|
+
0: \x{441}
|
|
902
|
+
0: \x{442}
|
|
903
|
+
|
|
904
|
+
/[\D]/8g
|
|
905
|
+
\x{442}\x{435}\x{441}\x{442}
|
|
906
|
+
0: \x{442}
|
|
907
|
+
0: \x{435}
|
|
908
|
+
0: \x{441}
|
|
909
|
+
0: \x{442}
|
|
910
|
+
|
|
911
|
+
/\W/8g
|
|
912
|
+
\x{2442}\x{2435}\x{2441}\x{2442}
|
|
913
|
+
0: \x{2442}
|
|
914
|
+
0: \x{2435}
|
|
915
|
+
0: \x{2441}
|
|
916
|
+
0: \x{2442}
|
|
917
|
+
|
|
918
|
+
/[\W]/8g
|
|
919
|
+
\x{2442}\x{2435}\x{2441}\x{2442}
|
|
920
|
+
0: \x{2442}
|
|
921
|
+
0: \x{2435}
|
|
922
|
+
0: \x{2441}
|
|
923
|
+
0: \x{2442}
|
|
924
|
+
|
|
925
|
+
/[\S\s]*/8
|
|
926
|
+
abc\n\r\x{442}\x{435}\x{441}\x{442}xyz
|
|
927
|
+
0: abc\x{0a}\x{0d}\x{442}\x{435}\x{441}\x{442}xyz
|
|
928
|
+
|
|
929
|
+
/[\x{41f}\S]/8g
|
|
930
|
+
\x{442}\x{435}\x{441}\x{442}
|
|
931
|
+
0: \x{442}
|
|
932
|
+
0: \x{435}
|
|
933
|
+
0: \x{441}
|
|
934
|
+
0: \x{442}
|
|
935
|
+
|
|
936
|
+
/.[^\S]./8g
|
|
937
|
+
abc def\x{442}\x{443}xyz\npqr
|
|
938
|
+
0: c d
|
|
939
|
+
0: z\x{0a}p
|
|
940
|
+
|
|
941
|
+
/.[^\S\n]./8g
|
|
942
|
+
abc def\x{442}\x{443}xyz\npqr
|
|
943
|
+
0: c d
|
|
944
|
+
|
|
945
|
+
/[[:^alnum:]]/8g
|
|
946
|
+
+\x{2442}
|
|
947
|
+
0: +
|
|
948
|
+
0: \x{2442}
|
|
949
|
+
|
|
950
|
+
/[[:^alpha:]]/8g
|
|
951
|
+
+\x{2442}
|
|
952
|
+
0: +
|
|
953
|
+
0: \x{2442}
|
|
954
|
+
|
|
955
|
+
/[[:^ascii:]]/8g
|
|
956
|
+
A\x{442}
|
|
957
|
+
0: \x{442}
|
|
958
|
+
|
|
959
|
+
/[[:^blank:]]/8g
|
|
960
|
+
A\x{442}
|
|
961
|
+
0: A
|
|
962
|
+
0: \x{442}
|
|
963
|
+
|
|
964
|
+
/[[:^cntrl:]]/8g
|
|
965
|
+
A\x{442}
|
|
966
|
+
0: A
|
|
967
|
+
0: \x{442}
|
|
968
|
+
|
|
969
|
+
/[[:^digit:]]/8g
|
|
970
|
+
A\x{442}
|
|
971
|
+
0: A
|
|
972
|
+
0: \x{442}
|
|
973
|
+
|
|
974
|
+
/[[:^graph:]]/8g
|
|
975
|
+
\x19\x{e01ff}
|
|
976
|
+
0: \x{19}
|
|
977
|
+
0: \x{e01ff}
|
|
978
|
+
|
|
979
|
+
/[[:^lower:]]/8g
|
|
980
|
+
A\x{422}
|
|
981
|
+
0: A
|
|
982
|
+
0: \x{422}
|
|
983
|
+
|
|
984
|
+
/[[:^print:]]/8g
|
|
985
|
+
\x{19}\x{e01ff}
|
|
986
|
+
0: \x{19}
|
|
987
|
+
0: \x{e01ff}
|
|
988
|
+
|
|
989
|
+
/[[:^punct:]]/8g
|
|
990
|
+
A\x{442}
|
|
991
|
+
0: A
|
|
992
|
+
0: \x{442}
|
|
993
|
+
|
|
994
|
+
/[[:^space:]]/8g
|
|
995
|
+
A\x{442}
|
|
996
|
+
0: A
|
|
997
|
+
0: \x{442}
|
|
998
|
+
|
|
999
|
+
/[[:^upper:]]/8g
|
|
1000
|
+
a\x{442}
|
|
1001
|
+
0: a
|
|
1002
|
+
0: \x{442}
|
|
1003
|
+
|
|
1004
|
+
/[[:^word:]]/8g
|
|
1005
|
+
+\x{2442}
|
|
1006
|
+
0: +
|
|
1007
|
+
0: \x{2442}
|
|
1008
|
+
|
|
1009
|
+
/[[:^xdigit:]]/8g
|
|
1010
|
+
M\x{442}
|
|
1011
|
+
0: M
|
|
1012
|
+
0: \x{442}
|
|
1013
|
+
|
|
1014
|
+
/[^ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĹĻĽĿŁŃŅŇŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸŹŻŽƁƂƄƆƇƉƊƋƎƏƐƑƓƔƖƗƘƜƝƟƠƢƤƦƧƩƬƮƯƱƲƳƵƷƸƼDŽLJNJǍǏǑǓǕǗǙǛǞǠǢǤǦǨǪǬǮDZǴǶǷǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȺȻȽȾɁΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫϒϓϔϘϚϜϞϠϢϤϦϨϪϬϮϴϷϹϺϽϾϿЀЁЂЃЄЅІЇЈЉЊЋЌЍЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯѠѢѤѦѨѪѬѮѰѲѴѶѸѺѼѾҀҊҌҎҐҒҔҖҘҚҜҞҠҢҤҦҨҪҬҮҰҲҴҶҸҺҼҾӀӁӃӅӇӉӋӍӐӒӔӖӘӚӜӞӠӢӤӦӨӪӬӮӰӲӴӶӸԀԂԄԆԈԊԌԎԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՒՓՔՕՖႠႡႢႣႤႥႦႧႨႩႪႫႬႭႮႯႰႱႲႳႴႵႶႷႸႹႺႻႼႽႾႿჀჁჂჃჄჅḀḂḄḆḈḊḌḎḐḒḔḖḘḚḜḞḠḢḤḦḨḪḬḮḰḲḴḶḸḺḼḾṀṂṄṆṈṊṌṎṐṒṔṖṘṚṜṞṠṢṤṦṨṪṬṮṰṲṴṶṸṺṼṾẀẂẄẆẈẊẌẎẐẒẔẠẢẤẦẨẪẬẮẰẲẴẶẸẺẼẾỀỂỄỆỈỊỌỎỐỒỔỖỘỚỜỞỠỢỤỦỨỪỬỮỰỲỴỶỸἈἉἊἋἌἍἎἏἘἙἚἛἜἝἨἩἪἫἬἭἮἯἸἹἺἻἼἽἾἿὈὉὊὋὌὍὙὛὝὟὨὩὪὫὬὭὮὯᾸᾹᾺΆῈΈῊΉῘῙῚΊῨῩῪΎῬῸΌῺΏabcdefghijklmnopqrstuvwxyzªµºßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿāăąćĉċčďđēĕėęěĝğġģĥħĩīĭįıijĵķĸĺļľŀłńņňʼnŋōŏőœŕŗřśŝşšţťŧũūŭůűųŵŷźżžſƀƃƅƈƌƍƒƕƙƚƛƞơƣƥƨƪƫƭưƴƶƹƺƽƾƿdžljnjǎǐǒǔǖǘǚǜǝǟǡǣǥǧǩǫǭǯǰdzǵǹǻǽǿȁȃȅȇȉȋȍȏȑȓȕȗșțȝȟȡȣȥȧȩȫȭȯȱȳȴȵȶȷȸȹȼȿɀɐɑɒɓɔɕɖɗɘəɚɛɜɝɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿʀʁʂʃʄʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʘʙʚʛʜʝʞʟʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯΐάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϐϑϕϖϗϙϛϝϟϡϣϥϧϩϫϭϯϰϱϲϳϵϸϻϼабвгдежзийклмнопрстуфхцчшщъыьэюяѐёђѓєѕіїјљњћќѝўџѡѣѥѧѩѫѭѯѱѳѵѷѹѻѽѿҁҋҍҏґғҕҗҙқҝҟҡңҥҧҩҫҭүұҳҵҷҹһҽҿӂӄӆӈӊӌӎӑӓӕӗәӛӝӟӡӣӥӧөӫӭӯӱӳӵӷӹԁԃԅԇԉԋԍԏաբգդեզէըթժիլխծկհձղճմյնշոչպջռսվտրցւփքօֆևᴀᴁᴂᴃᴄᴅᴆᴇᴈᴉᴊᴋᴌᴍᴎᴏᴐᴑᴒᴓᴔᴕᴖᴗᴘᴙᴚᴛᴜᴝᴞᴟᴠᴡᴢᴣᴤᴥᴦᴧᴨᴩᴪᴫᵢᵣᵤᵥᵦᵧᵨᵩᵪᵫᵬᵭᵮᵯᵰᵱᵲᵳᵴᵵᵶᵷᵹᵺᵻᵼᵽᵾᵿᶀᶁᶂᶃᶄᶅᶆᶇᶈᶉᶊᶋᶌᶍᶎᶏᶐᶑᶒᶓᶔᶕᶖᶗᶘᶙᶚḁḃḅḇḉḋḍḏḑḓḕḗḙḛḝḟḡḣḥḧḩḫḭḯḱḳḵḷḹḻḽḿṁṃṅṇṉṋṍṏṑṓṕṗṙṛṝṟṡṣṥṧṩṫṭṯṱṳṵṷṹṻṽṿẁẃẅẇẉẋẍẏẑẓẕẖẗẘẙẚẛạảấầẩẫậắằẳẵặẹẻẽếềểễệỉịọỏốồổỗộớờởỡợụủứừửữựỳỵỷỹἀἁἂἃἄἅἆἇἐἑἒἓἔἕἠἡἢἣἤἥἦἧἰἱἲἳἴἵἶἷὀὁὂὃὄὅὐὑὒὓὔὕὖὗὠὡὢὣὤὥὦὧὰάὲέὴήὶίὸόὺύὼώᾀᾁᾂᾃᾄᾅᾆᾇᾐᾑᾒᾓᾔᾕᾖᾗᾠᾡᾢᾣᾤᾥᾦᾧᾰᾱᾲᾳᾴᾶᾷιῂῃῄῆῇῐῑῒΐῖῗῠῡῢΰῤῥῦῧῲῳῴῶῷⲁⲃⲅⲇⲉⲋⲍⲏⲑⲓⲕⲗⲙⲛⲝⲟⲡⲣⲥⲧⲩⲫⲭⲯⲱⲳⲵⲷⲹⲻⲽⲿⳁⳃⳅⳇⳉⳋⳍⳏⳑⳓⳕⳗⳙⳛⳝⳟⳡⳣⳤⴀⴁⴂⴃⴄⴅⴆⴇⴈⴉⴊⴋⴌⴍⴎⴏⴐⴑⴒⴓⴔⴕⴖⴗⴘⴙⴚⴛⴜⴝⴞⴟⴠⴡⴢⴣⴤⴥfffiflffifflſtstﬓﬔﬕﬖﬗ\d-_^]/8
|
|
1015
|
+
|
|
1016
|
+
/^[^d]*?$/
|
|
1017
|
+
abc
|
|
1018
|
+
0: abc
|
|
1019
|
+
|
|
1020
|
+
/^[^d]*?$/8
|
|
1021
|
+
abc
|
|
1022
|
+
0: abc
|
|
1023
|
+
|
|
1024
|
+
/^[^d]*?$/i
|
|
1025
|
+
abc
|
|
1026
|
+
0: abc
|
|
1027
|
+
|
|
1028
|
+
/^[^d]*?$/8i
|
|
1029
|
+
abc
|
|
1030
|
+
0: abc
|
|
1031
|
+
|
|
1032
|
+
/(?i)[\xc3\xa9\xc3\xbd]|[\xc3\xa9\xc3\xbdA]/8
|
|
1033
|
+
|
|
1034
|
+
/^[a\x{c0}]b/8
|
|
1035
|
+
\x{c0}b
|
|
1036
|
+
0: \x{c0}b
|
|
1037
|
+
|
|
1038
|
+
/^([a\x{c0}]*?)aa/8
|
|
1039
|
+
a\x{c0}aaaa/
|
|
1040
|
+
0: a\x{c0}aa
|
|
1041
|
+
1: a\x{c0}
|
|
1042
|
+
|
|
1043
|
+
/^([a\x{c0}]*?)aa/8
|
|
1044
|
+
a\x{c0}aaaa/
|
|
1045
|
+
0: a\x{c0}aa
|
|
1046
|
+
1: a\x{c0}
|
|
1047
|
+
a\x{c0}a\x{c0}aaa/
|
|
1048
|
+
0: a\x{c0}a\x{c0}aa
|
|
1049
|
+
1: a\x{c0}a\x{c0}
|
|
1050
|
+
|
|
1051
|
+
/^([a\x{c0}]*)aa/8
|
|
1052
|
+
a\x{c0}aaaa/
|
|
1053
|
+
0: a\x{c0}aaaa
|
|
1054
|
+
1: a\x{c0}aa
|
|
1055
|
+
a\x{c0}a\x{c0}aaa/
|
|
1056
|
+
0: a\x{c0}a\x{c0}aaa
|
|
1057
|
+
1: a\x{c0}a\x{c0}a
|
|
1058
|
+
|
|
1059
|
+
/^([a\x{c0}]*)a\x{c0}/8
|
|
1060
|
+
a\x{c0}aaaa/
|
|
1061
|
+
0: a\x{c0}
|
|
1062
|
+
1:
|
|
1063
|
+
a\x{c0}a\x{c0}aaa/
|
|
1064
|
+
0: a\x{c0}a\x{c0}
|
|
1065
|
+
1: a\x{c0}
|
|
1066
|
+
|
|
1067
|
+
/A*/g8
|
|
1068
|
+
AAB\x{123}BAA
|
|
1069
|
+
0: AA
|
|
1070
|
+
0:
|
|
1071
|
+
0:
|
|
1072
|
+
0:
|
|
1073
|
+
0: AA
|
|
1074
|
+
0:
|
|
1075
|
+
|
|
1076
|
+
/(abc)\1/8i
|
|
1077
|
+
abc
|
|
1078
|
+
No match
|
|
1079
|
+
|
|
1080
|
+
/(abc)\1/8
|
|
1081
|
+
abc
|
|
1082
|
+
No match
|
|
1083
|
+
|
|
1084
|
+
/a(*:a\x{1234}b)/8K
|
|
1085
|
+
abc
|
|
1086
|
+
0: a
|
|
1087
|
+
MK: a\x{1234}b
|
|
1088
|
+
|
|
1089
|
+
/a(*:a£b)/8K
|
|
1090
|
+
abc
|
|
1091
|
+
0: a
|
|
1092
|
+
MK: a\x{a3}b
|
|
1093
|
+
|
|
1094
|
+
/-- End of testinput4 --/
|