openfeature-sdk-sorbet 0.2.0.2 → 0.3.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 +4 -4
- data/.rubocop.yml +2 -1
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +9 -6
- data/Gemfile +1 -1
- data/Gemfile.lock +55 -49
- data/README.md +23 -6
- data/lib/open_feature/client.rb +90 -32
- data/lib/open_feature/client_metadata.rb +1 -0
- data/lib/open_feature/evaluation_context.rb +7 -5
- data/lib/open_feature/evaluation_details.rb +2 -2
- data/lib/open_feature/hook.rb +41 -1
- data/lib/open_feature/hook_context.rb +30 -0
- data/lib/open_feature/hooks.rb +22 -0
- data/lib/open_feature/multiple_source_provider.rb +28 -12
- data/lib/open_feature/no_op_provider.rb +2 -3
- data/lib/open_feature/provider.rb +16 -2
- data/lib/open_feature/provider_status.rb +13 -0
- data/lib/open_feature.rb +9 -2
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/{json@2.6.3.rbi → json@2.7.1.rbi} +80 -60
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/{minitest@5.18.0.rbi → minitest@5.21.2.rbi} +299 -258
- data/sorbet/rbi/gems/{parallel@1.23.0.rbi → parallel@1.24.0.rbi} +8 -1
- data/sorbet/rbi/gems/{parser@3.2.2.1.rbi → parser@3.3.0.5.rbi} +438 -2219
- data/sorbet/rbi/gems/prism@0.19.0.rbi +25199 -0
- data/sorbet/rbi/gems/psych@5.1.2.rbi +1731 -0
- data/sorbet/rbi/gems/racc@1.7.3.rbi +157 -0
- data/sorbet/rbi/gems/{rake@13.0.6.rbi → rake@13.1.0.rbi} +68 -65
- data/sorbet/rbi/gems/{rbi@0.0.16.rbi → rbi@0.1.6.rbi} +628 -755
- data/sorbet/rbi/gems/{regexp_parser@2.8.0.rbi → regexp_parser@2.9.0.rbi} +203 -180
- data/sorbet/rbi/gems/{rexml@3.2.5.rbi → rexml@3.2.6.rbi} +116 -52
- data/sorbet/rbi/gems/{rubocop-ast@1.28.1.rbi → rubocop-ast@1.30.0.rbi} +178 -84
- data/sorbet/rbi/gems/{rubocop-minitest@0.31.0.rbi → rubocop-minitest@0.34.5.rbi} +280 -232
- data/sorbet/rbi/gems/{rubocop-performance@1.17.1.rbi → rubocop-performance@1.20.2.rbi} +397 -172
- data/sorbet/rbi/gems/{rubocop-sorbet@0.7.0.rbi → rubocop-sorbet@0.7.6.rbi} +728 -261
- data/sorbet/rbi/gems/{rubocop@1.51.0.rbi → rubocop@1.60.2.rbi} +4006 -1936
- data/sorbet/rbi/gems/spoom@1.2.1.rbi +17 -56
- data/sorbet/rbi/gems/stringio@3.1.0.rbi +8 -0
- data/sorbet/rbi/gems/{tapioca@0.11.6.rbi → tapioca@0.11.17.rbi} +778 -576
- data/sorbet/rbi/gems/{thor@1.2.2.rbi → thor@1.3.0.rbi} +775 -395
- data/sorbet/rbi/gems/yard-sorbet@0.8.1.rbi +1 -1
- data/sorbet/rbi/gems/yard@0.9.34.rbi +2 -2
- data/sorbet/rbi/gems/{zeitwerk@2.6.8.rbi → zeitwerk@2.6.12.rbi} +78 -67
- data/sorbet/tapioca/config.yml +2 -2
- data/sorbet/tapioca/require.rb +3 -1
- metadata +36 -31
- data/openfeature-sdk-sorbet.gemspec +0 -35
- data/sorbet/rbi/gems/diff-lcs@1.5.0.rbi +0 -1083
- data/sorbet/rbi/gems/irb@1.6.4.rbi +0 -342
- data/sorbet/rbi/gems/unparser@0.6.7.rbi +0 -4524
- /data/sorbet/rbi/gems/{io-console@0.6.0.rbi → io-console@0.7.2.rbi} +0 -0
- /data/sorbet/rbi/gems/{reline@0.3.3.rbi → reline@0.4.2.rbi} +0 -0
- /data/sorbet/rbi/gems/{unicode-display_width@2.4.2.rbi → unicode-display_width@2.5.0.rbi} +0 -0
@@ -94,6 +94,9 @@ end
|
|
94
94
|
class Regexp::Expression::Anchor::NonWordBoundary < ::Regexp::Expression::Anchor::Base
|
95
95
|
# source://regexp_parser//lib/regexp_parser/expression/methods/human_name.rb#17
|
96
96
|
def human_name; end
|
97
|
+
|
98
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#13
|
99
|
+
def negative?; end
|
97
100
|
end
|
98
101
|
|
99
102
|
# source://regexp_parser//lib/regexp_parser/expression/classes/anchor.rb#13
|
@@ -127,12 +130,18 @@ end
|
|
127
130
|
class Regexp::Expression::Assertion::NegativeLookahead < ::Regexp::Expression::Assertion::Base
|
128
131
|
# source://regexp_parser//lib/regexp_parser/expression/methods/human_name.rb#21
|
129
132
|
def human_name; end
|
133
|
+
|
134
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#14
|
135
|
+
def negative?; end
|
130
136
|
end
|
131
137
|
|
132
138
|
# source://regexp_parser//lib/regexp_parser/expression/classes/group.rb#71
|
133
139
|
class Regexp::Expression::Assertion::NegativeLookbehind < ::Regexp::Expression::Assertion::Base
|
134
140
|
# source://regexp_parser//lib/regexp_parser/expression/methods/human_name.rb#22
|
135
141
|
def human_name; end
|
142
|
+
|
143
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#15
|
144
|
+
def negative?; end
|
136
145
|
end
|
137
146
|
|
138
147
|
# alias for symmetry between token symbol and Expression class name
|
@@ -574,10 +583,10 @@ end
|
|
574
583
|
class Regexp::Expression::CharacterSet < ::Regexp::Expression::Subexpression
|
575
584
|
# @return [CharacterSet] a new instance of CharacterSet
|
576
585
|
#
|
577
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#
|
586
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#6
|
578
587
|
def initialize(token, options = T.unsafe(nil)); end
|
579
588
|
|
580
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#
|
589
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#16
|
581
590
|
def close; end
|
582
591
|
|
583
592
|
# Returns the value of attribute closed.
|
@@ -600,14 +609,9 @@ class Regexp::Expression::CharacterSet < ::Regexp::Expression::Subexpression
|
|
600
609
|
# source://regexp_parser//lib/regexp_parser/expression/methods/match_length.rb#98
|
601
610
|
def match_length; end
|
602
611
|
|
603
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#
|
612
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#12
|
604
613
|
def negate; end
|
605
614
|
|
606
|
-
# Returns the value of attribute negative.
|
607
|
-
#
|
608
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#3
|
609
|
-
def negated?; end
|
610
|
-
|
611
615
|
# Returns the value of attribute negative.
|
612
616
|
#
|
613
617
|
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#3
|
@@ -620,9 +624,7 @@ class Regexp::Expression::CharacterSet < ::Regexp::Expression::Subexpression
|
|
620
624
|
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#3
|
621
625
|
def negative=(_arg0); end
|
622
626
|
|
623
|
-
#
|
624
|
-
#
|
625
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#3
|
627
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#16
|
626
628
|
def negative?; end
|
627
629
|
|
628
630
|
# source://regexp_parser//lib/regexp_parser/expression/methods/parts.rb#15
|
@@ -686,6 +688,9 @@ end
|
|
686
688
|
class Regexp::Expression::CharacterType::Base < ::Regexp::Expression::Base
|
687
689
|
# source://regexp_parser//lib/regexp_parser/expression/methods/match_length.rb#98
|
688
690
|
def match_length; end
|
691
|
+
|
692
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#17
|
693
|
+
def negative?; end
|
689
694
|
end
|
690
695
|
|
691
696
|
# source://regexp_parser//lib/regexp_parser/expression/classes/character_type.rb#6
|
@@ -1151,10 +1156,10 @@ end
|
|
1151
1156
|
# source://regexp_parser//lib/regexp_parser/expression/methods/match_length.rb#85
|
1152
1157
|
Regexp::Expression::MatchLength = Regexp::MatchLength
|
1153
1158
|
|
1154
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#
|
1159
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#10
|
1155
1160
|
Regexp::Expression::Nonposixclass = Regexp::Expression::PosixClass
|
1156
1161
|
|
1157
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1162
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#118
|
1158
1163
|
Regexp::Expression::Nonproperty = Regexp::Expression::UnicodeProperty
|
1159
1164
|
|
1160
1165
|
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#2
|
@@ -1162,23 +1167,21 @@ class Regexp::Expression::PosixClass < ::Regexp::Expression::Base
|
|
1162
1167
|
# source://regexp_parser//lib/regexp_parser/expression/methods/match_length.rb#98
|
1163
1168
|
def match_length; end
|
1164
1169
|
|
1165
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#
|
1170
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#3
|
1166
1171
|
def name; end
|
1167
1172
|
|
1168
|
-
#
|
1169
|
-
#
|
1170
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#3
|
1173
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#18
|
1171
1174
|
def negative?; end
|
1172
1175
|
end
|
1173
1176
|
|
1174
1177
|
# alias for symmetry between token symbol and Expression class name
|
1175
1178
|
#
|
1176
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#
|
1179
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/posix_class.rb#9
|
1177
1180
|
Regexp::Expression::Posixclass = Regexp::Expression::PosixClass
|
1178
1181
|
|
1179
1182
|
# alias for symmetry between token symbol and Expression class name
|
1180
1183
|
#
|
1181
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1184
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#117
|
1182
1185
|
Regexp::Expression::Property = Regexp::Expression::UnicodeProperty
|
1183
1186
|
|
1184
1187
|
# TODO: in v3.0.0, maybe put Shared back into Base, and inherit from Base and
|
@@ -1370,7 +1373,7 @@ end
|
|
1370
1373
|
|
1371
1374
|
# alias for symmetry between token symbol and Expression class name
|
1372
1375
|
#
|
1373
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#
|
1376
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/character_set.rb#22
|
1374
1377
|
Regexp::Expression::Set = Regexp::Expression::CharacterSet
|
1375
1378
|
|
1376
1379
|
# source://regexp_parser//lib/regexp_parser/expression/shared.rb#2
|
@@ -1453,6 +1456,18 @@ module Regexp::Expression::Shared
|
|
1453
1456
|
# source://regexp_parser//lib/regexp_parser/expression/methods/tests.rb#36
|
1454
1457
|
def is?(test_token, test_type = T.unsafe(nil)); end
|
1455
1458
|
|
1459
|
+
# not an alias so as to respect overrides of #negative?
|
1460
|
+
#
|
1461
|
+
# @return [Boolean]
|
1462
|
+
#
|
1463
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#8
|
1464
|
+
def negated?; end
|
1465
|
+
|
1466
|
+
# @return [Boolean]
|
1467
|
+
#
|
1468
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#3
|
1469
|
+
def negative?; end
|
1470
|
+
|
1456
1471
|
# source://regexp_parser//lib/regexp_parser/expression/shared.rb#100
|
1457
1472
|
def nesting_level=(lvl); end
|
1458
1473
|
|
@@ -1794,22 +1809,22 @@ end
|
|
1794
1809
|
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#2
|
1795
1810
|
module Regexp::Expression::UnicodeProperty; end
|
1796
1811
|
|
1797
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1812
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#108
|
1798
1813
|
class Regexp::Expression::UnicodeProperty::Age < ::Regexp::Expression::UnicodeProperty::Base; end
|
1799
1814
|
|
1800
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1815
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#13
|
1801
1816
|
class Regexp::Expression::UnicodeProperty::Alnum < ::Regexp::Expression::UnicodeProperty::Base; end
|
1802
1817
|
|
1803
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1818
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#14
|
1804
1819
|
class Regexp::Expression::UnicodeProperty::Alpha < ::Regexp::Expression::UnicodeProperty::Base; end
|
1805
1820
|
|
1806
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1821
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#31
|
1807
1822
|
class Regexp::Expression::UnicodeProperty::Any < ::Regexp::Expression::UnicodeProperty::Base; end
|
1808
1823
|
|
1809
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1824
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#15
|
1810
1825
|
class Regexp::Expression::UnicodeProperty::Ascii < ::Regexp::Expression::UnicodeProperty::Base; end
|
1811
1826
|
|
1812
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1827
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#32
|
1813
1828
|
class Regexp::Expression::UnicodeProperty::Assigned < ::Regexp::Expression::UnicodeProperty::Base; end
|
1814
1829
|
|
1815
1830
|
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#3
|
@@ -1817,226 +1832,227 @@ class Regexp::Expression::UnicodeProperty::Base < ::Regexp::Expression::Base
|
|
1817
1832
|
# source://regexp_parser//lib/regexp_parser/expression/methods/match_length.rb#98
|
1818
1833
|
def match_length; end
|
1819
1834
|
|
1820
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1835
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#4
|
1821
1836
|
def name; end
|
1822
1837
|
|
1823
|
-
#
|
1824
|
-
#
|
1825
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#4
|
1838
|
+
# source://regexp_parser//lib/regexp_parser/expression/methods/negative.rb#19
|
1826
1839
|
def negative?; end
|
1827
1840
|
|
1828
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1841
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#8
|
1829
1842
|
def shortcut; end
|
1830
1843
|
end
|
1831
1844
|
|
1832
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1845
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#16
|
1833
1846
|
class Regexp::Expression::UnicodeProperty::Blank < ::Regexp::Expression::UnicodeProperty::Base; end
|
1834
1847
|
|
1835
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1848
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#109
|
1836
1849
|
class Regexp::Expression::UnicodeProperty::Block < ::Regexp::Expression::UnicodeProperty::Base; end
|
1837
1850
|
|
1838
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1851
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#17
|
1839
1852
|
class Regexp::Expression::UnicodeProperty::Cntrl < ::Regexp::Expression::UnicodeProperty::Base; end
|
1840
1853
|
|
1841
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1854
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#97
|
1842
1855
|
module Regexp::Expression::UnicodeProperty::Codepoint; end
|
1843
1856
|
|
1844
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1857
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#100
|
1845
1858
|
class Regexp::Expression::UnicodeProperty::Codepoint::Any < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1846
1859
|
|
1847
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1860
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#98
|
1848
1861
|
class Regexp::Expression::UnicodeProperty::Codepoint::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1849
1862
|
|
1850
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1863
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#101
|
1851
1864
|
class Regexp::Expression::UnicodeProperty::Codepoint::Control < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1852
1865
|
|
1853
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1866
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#102
|
1854
1867
|
class Regexp::Expression::UnicodeProperty::Codepoint::Format < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1855
1868
|
|
1856
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1869
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#104
|
1857
1870
|
class Regexp::Expression::UnicodeProperty::Codepoint::PrivateUse < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1858
1871
|
|
1859
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1872
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#103
|
1860
1873
|
class Regexp::Expression::UnicodeProperty::Codepoint::Surrogate < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1861
1874
|
|
1862
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1875
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#105
|
1863
1876
|
class Regexp::Expression::UnicodeProperty::Codepoint::Unassigned < ::Regexp::Expression::UnicodeProperty::Codepoint::Base; end
|
1864
1877
|
|
1865
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1878
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#110
|
1866
1879
|
class Regexp::Expression::UnicodeProperty::Derived < ::Regexp::Expression::UnicodeProperty::Base; end
|
1867
1880
|
|
1868
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1881
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#18
|
1869
1882
|
class Regexp::Expression::UnicodeProperty::Digit < ::Regexp::Expression::UnicodeProperty::Base; end
|
1870
1883
|
|
1871
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1884
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#111
|
1872
1885
|
class Regexp::Expression::UnicodeProperty::Emoji < ::Regexp::Expression::UnicodeProperty::Base; end
|
1873
1886
|
|
1874
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1887
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#112
|
1888
|
+
class Regexp::Expression::UnicodeProperty::Enumerated < ::Regexp::Expression::UnicodeProperty::Base; end
|
1889
|
+
|
1890
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#19
|
1875
1891
|
class Regexp::Expression::UnicodeProperty::Graph < ::Regexp::Expression::UnicodeProperty::Base; end
|
1876
1892
|
|
1877
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1893
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#34
|
1878
1894
|
module Regexp::Expression::UnicodeProperty::Letter; end
|
1879
1895
|
|
1880
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1896
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#37
|
1881
1897
|
class Regexp::Expression::UnicodeProperty::Letter::Any < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1882
1898
|
|
1883
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1899
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#35
|
1884
1900
|
class Regexp::Expression::UnicodeProperty::Letter::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1885
1901
|
|
1886
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1902
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#38
|
1887
1903
|
class Regexp::Expression::UnicodeProperty::Letter::Cased < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1888
1904
|
|
1889
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1905
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#40
|
1890
1906
|
class Regexp::Expression::UnicodeProperty::Letter::Lowercase < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1891
1907
|
|
1892
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1908
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#42
|
1893
1909
|
class Regexp::Expression::UnicodeProperty::Letter::Modifier < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1894
1910
|
|
1895
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1911
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#43
|
1896
1912
|
class Regexp::Expression::UnicodeProperty::Letter::Other < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1897
1913
|
|
1898
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1914
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#41
|
1899
1915
|
class Regexp::Expression::UnicodeProperty::Letter::Titlecase < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1900
1916
|
|
1901
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1917
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#39
|
1902
1918
|
class Regexp::Expression::UnicodeProperty::Letter::Uppercase < ::Regexp::Expression::UnicodeProperty::Letter::Base; end
|
1903
1919
|
|
1904
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1920
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#20
|
1905
1921
|
class Regexp::Expression::UnicodeProperty::Lower < ::Regexp::Expression::UnicodeProperty::Base; end
|
1906
1922
|
|
1907
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1923
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#46
|
1908
1924
|
module Regexp::Expression::UnicodeProperty::Mark; end
|
1909
1925
|
|
1910
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1926
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#49
|
1911
1927
|
class Regexp::Expression::UnicodeProperty::Mark::Any < ::Regexp::Expression::UnicodeProperty::Mark::Base; end
|
1912
1928
|
|
1913
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1929
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#47
|
1914
1930
|
class Regexp::Expression::UnicodeProperty::Mark::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1915
1931
|
|
1916
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1932
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#50
|
1917
1933
|
class Regexp::Expression::UnicodeProperty::Mark::Combining < ::Regexp::Expression::UnicodeProperty::Mark::Base; end
|
1918
1934
|
|
1919
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1935
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#53
|
1920
1936
|
class Regexp::Expression::UnicodeProperty::Mark::Enclosing < ::Regexp::Expression::UnicodeProperty::Mark::Base; end
|
1921
1937
|
|
1922
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1938
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#51
|
1923
1939
|
class Regexp::Expression::UnicodeProperty::Mark::Nonspacing < ::Regexp::Expression::UnicodeProperty::Mark::Base; end
|
1924
1940
|
|
1925
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1941
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#52
|
1926
1942
|
class Regexp::Expression::UnicodeProperty::Mark::Spacing < ::Regexp::Expression::UnicodeProperty::Mark::Base; end
|
1927
1943
|
|
1928
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1944
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#29
|
1929
1945
|
class Regexp::Expression::UnicodeProperty::Newline < ::Regexp::Expression::UnicodeProperty::Base; end
|
1930
1946
|
|
1931
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1947
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#56
|
1932
1948
|
module Regexp::Expression::UnicodeProperty::Number; end
|
1933
1949
|
|
1934
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1950
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#59
|
1935
1951
|
class Regexp::Expression::UnicodeProperty::Number::Any < ::Regexp::Expression::UnicodeProperty::Number::Base; end
|
1936
1952
|
|
1937
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1953
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#57
|
1938
1954
|
class Regexp::Expression::UnicodeProperty::Number::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1939
1955
|
|
1940
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1956
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#60
|
1941
1957
|
class Regexp::Expression::UnicodeProperty::Number::Decimal < ::Regexp::Expression::UnicodeProperty::Number::Base; end
|
1942
1958
|
|
1943
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1959
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#61
|
1944
1960
|
class Regexp::Expression::UnicodeProperty::Number::Letter < ::Regexp::Expression::UnicodeProperty::Number::Base; end
|
1945
1961
|
|
1946
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1962
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#62
|
1947
1963
|
class Regexp::Expression::UnicodeProperty::Number::Other < ::Regexp::Expression::UnicodeProperty::Number::Base; end
|
1948
1964
|
|
1949
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1965
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#21
|
1950
1966
|
class Regexp::Expression::UnicodeProperty::Print < ::Regexp::Expression::UnicodeProperty::Base; end
|
1951
1967
|
|
1952
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1968
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#22
|
1953
1969
|
class Regexp::Expression::UnicodeProperty::Punct < ::Regexp::Expression::UnicodeProperty::Base; end
|
1954
1970
|
|
1955
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1971
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#65
|
1956
1972
|
module Regexp::Expression::UnicodeProperty::Punctuation; end
|
1957
1973
|
|
1958
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1974
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#68
|
1959
1975
|
class Regexp::Expression::UnicodeProperty::Punctuation::Any < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1960
1976
|
|
1961
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1977
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#66
|
1962
1978
|
class Regexp::Expression::UnicodeProperty::Punctuation::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1963
1979
|
|
1964
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1980
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#72
|
1965
1981
|
class Regexp::Expression::UnicodeProperty::Punctuation::Close < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1966
1982
|
|
1967
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1983
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#69
|
1968
1984
|
class Regexp::Expression::UnicodeProperty::Punctuation::Connector < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1969
1985
|
|
1970
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1986
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#70
|
1971
1987
|
class Regexp::Expression::UnicodeProperty::Punctuation::Dash < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1972
1988
|
|
1973
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1989
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#74
|
1974
1990
|
class Regexp::Expression::UnicodeProperty::Punctuation::Final < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1975
1991
|
|
1976
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1992
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#73
|
1977
1993
|
class Regexp::Expression::UnicodeProperty::Punctuation::Initial < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1978
1994
|
|
1979
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1995
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#71
|
1980
1996
|
class Regexp::Expression::UnicodeProperty::Punctuation::Open < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1981
1997
|
|
1982
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
1998
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#75
|
1983
1999
|
class Regexp::Expression::UnicodeProperty::Punctuation::Other < ::Regexp::Expression::UnicodeProperty::Punctuation::Base; end
|
1984
2000
|
|
1985
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2001
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#113
|
1986
2002
|
class Regexp::Expression::UnicodeProperty::Script < ::Regexp::Expression::UnicodeProperty::Base; end
|
1987
2003
|
|
1988
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2004
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#78
|
1989
2005
|
module Regexp::Expression::UnicodeProperty::Separator; end
|
1990
2006
|
|
1991
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2007
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#81
|
1992
2008
|
class Regexp::Expression::UnicodeProperty::Separator::Any < ::Regexp::Expression::UnicodeProperty::Separator::Base; end
|
1993
2009
|
|
1994
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2010
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#79
|
1995
2011
|
class Regexp::Expression::UnicodeProperty::Separator::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
1996
2012
|
|
1997
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2013
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#83
|
1998
2014
|
class Regexp::Expression::UnicodeProperty::Separator::Line < ::Regexp::Expression::UnicodeProperty::Separator::Base; end
|
1999
2015
|
|
2000
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2016
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#84
|
2001
2017
|
class Regexp::Expression::UnicodeProperty::Separator::Paragraph < ::Regexp::Expression::UnicodeProperty::Separator::Base; end
|
2002
2018
|
|
2003
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2019
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#82
|
2004
2020
|
class Regexp::Expression::UnicodeProperty::Separator::Space < ::Regexp::Expression::UnicodeProperty::Separator::Base; end
|
2005
2021
|
|
2006
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2022
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#23
|
2007
2023
|
class Regexp::Expression::UnicodeProperty::Space < ::Regexp::Expression::UnicodeProperty::Base; end
|
2008
2024
|
|
2009
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2025
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#87
|
2010
2026
|
module Regexp::Expression::UnicodeProperty::Symbol; end
|
2011
2027
|
|
2012
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2028
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#90
|
2013
2029
|
class Regexp::Expression::UnicodeProperty::Symbol::Any < ::Regexp::Expression::UnicodeProperty::Symbol::Base; end
|
2014
2030
|
|
2015
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2031
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#88
|
2016
2032
|
class Regexp::Expression::UnicodeProperty::Symbol::Base < ::Regexp::Expression::UnicodeProperty::Base; end
|
2017
2033
|
|
2018
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2034
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#92
|
2019
2035
|
class Regexp::Expression::UnicodeProperty::Symbol::Currency < ::Regexp::Expression::UnicodeProperty::Symbol::Base; end
|
2020
2036
|
|
2021
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2037
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#91
|
2022
2038
|
class Regexp::Expression::UnicodeProperty::Symbol::Math < ::Regexp::Expression::UnicodeProperty::Symbol::Base; end
|
2023
2039
|
|
2024
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2040
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#93
|
2025
2041
|
class Regexp::Expression::UnicodeProperty::Symbol::Modifier < ::Regexp::Expression::UnicodeProperty::Symbol::Base; end
|
2026
2042
|
|
2027
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2043
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#94
|
2028
2044
|
class Regexp::Expression::UnicodeProperty::Symbol::Other < ::Regexp::Expression::UnicodeProperty::Symbol::Base; end
|
2029
2045
|
|
2030
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2046
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#24
|
2031
2047
|
class Regexp::Expression::UnicodeProperty::Upper < ::Regexp::Expression::UnicodeProperty::Base; end
|
2032
2048
|
|
2033
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2049
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#25
|
2034
2050
|
class Regexp::Expression::UnicodeProperty::Word < ::Regexp::Expression::UnicodeProperty::Base; end
|
2035
2051
|
|
2036
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2052
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#27
|
2037
2053
|
class Regexp::Expression::UnicodeProperty::XPosixPunct < ::Regexp::Expression::UnicodeProperty::Base; end
|
2038
2054
|
|
2039
|
-
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#
|
2055
|
+
# source://regexp_parser//lib/regexp_parser/expression/classes/unicode_property.rb#26
|
2040
2056
|
class Regexp::Expression::UnicodeProperty::Xdigit < ::Regexp::Expression::UnicodeProperty::Base; end
|
2041
2057
|
|
2042
2058
|
# source://regexp_parser//lib/regexp_parser/expression/classes/free_space.rb#11
|
@@ -2343,7 +2359,7 @@ class Regexp::Parser
|
|
2343
2359
|
|
2344
2360
|
private
|
2345
2361
|
|
2346
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2362
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#574
|
2347
2363
|
def active_opts; end
|
2348
2364
|
|
2349
2365
|
# source://regexp_parser//lib/regexp_parser/parser.rb#99
|
@@ -2356,7 +2372,7 @@ class Regexp::Parser
|
|
2356
2372
|
# an instance of Backreference::Number, its #referenced_expression is set to
|
2357
2373
|
# the instance of Group::Capture that it refers to via its number.
|
2358
2374
|
#
|
2359
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2375
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#581
|
2360
2376
|
def assign_referenced_expressions; end
|
2361
2377
|
|
2362
2378
|
# source://regexp_parser//lib/regexp_parser/parser.rb#227
|
@@ -2377,13 +2393,13 @@ class Regexp::Parser
|
|
2377
2393
|
# source://regexp_parser//lib/regexp_parser/parser.rb#56
|
2378
2394
|
def captured_group_counts=(_arg0); end
|
2379
2395
|
|
2380
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2396
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#570
|
2381
2397
|
def close_completed_character_set_range; end
|
2382
2398
|
|
2383
2399
|
# source://regexp_parser//lib/regexp_parser/parser.rb#210
|
2384
2400
|
def close_group; end
|
2385
2401
|
|
2386
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2402
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#538
|
2387
2403
|
def close_set; end
|
2388
2404
|
|
2389
2405
|
# source://regexp_parser//lib/regexp_parser/parser.rb#269
|
@@ -2421,10 +2437,10 @@ class Regexp::Parser
|
|
2421
2437
|
# source://regexp_parser//lib/regexp_parser/parser.rb#114
|
2422
2438
|
def group(token); end
|
2423
2439
|
|
2424
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2440
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#509
|
2425
2441
|
def increase_group_level(exp); end
|
2426
2442
|
|
2427
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2443
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#549
|
2428
2444
|
def intersection(token); end
|
2429
2445
|
|
2430
2446
|
# source://regexp_parser//lib/regexp_parser/parser.rb#360
|
@@ -2436,7 +2452,7 @@ class Regexp::Parser
|
|
2436
2452
|
# source://regexp_parser//lib/regexp_parser/parser.rb#368
|
2437
2453
|
def meta(token); end
|
2438
2454
|
|
2439
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2455
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#534
|
2440
2456
|
def negate_set; end
|
2441
2457
|
|
2442
2458
|
# source://regexp_parser//lib/regexp_parser/parser.rb#299
|
@@ -2472,7 +2488,7 @@ class Regexp::Parser
|
|
2472
2488
|
# source://regexp_parser//lib/regexp_parser/parser.rb#165
|
2473
2489
|
def open_group(token); end
|
2474
2490
|
|
2475
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2491
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#527
|
2476
2492
|
def open_set(token); end
|
2477
2493
|
|
2478
2494
|
# source://regexp_parser//lib/regexp_parser/parser.rb#130
|
@@ -2499,10 +2515,10 @@ class Regexp::Parser
|
|
2499
2515
|
# source://regexp_parser//lib/regexp_parser/parser.rb#397
|
2500
2516
|
def property(token); end
|
2501
2517
|
|
2502
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2518
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#479
|
2503
2519
|
def quantifier(token); end
|
2504
2520
|
|
2505
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2521
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#542
|
2506
2522
|
def range(token); end
|
2507
2523
|
|
2508
2524
|
# Returns the value of attribute root.
|
@@ -2520,7 +2536,7 @@ class Regexp::Parser
|
|
2520
2536
|
# source://regexp_parser//lib/regexp_parser/parser.rb#379
|
2521
2537
|
def sequence_operation(klass, token); end
|
2522
2538
|
|
2523
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2539
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#515
|
2524
2540
|
def set(token); end
|
2525
2541
|
|
2526
2542
|
# Returns the value of attribute switching_options.
|
@@ -2538,7 +2554,7 @@ class Regexp::Parser
|
|
2538
2554
|
# source://regexp_parser//lib/regexp_parser/parser.rb#198
|
2539
2555
|
def total_captured_group_count; end
|
2540
2556
|
|
2541
|
-
# source://regexp_parser//lib/regexp_parser/parser.rb#
|
2557
|
+
# source://regexp_parser//lib/regexp_parser/parser.rb#553
|
2542
2558
|
def type(token); end
|
2543
2559
|
|
2544
2560
|
class << self
|
@@ -2586,23 +2602,21 @@ end
|
|
2586
2602
|
# source://regexp_parser//lib/regexp_parser/version.rb#3
|
2587
2603
|
Regexp::Parser::VERSION = T.let(T.unsafe(nil), String)
|
2588
2604
|
|
2589
|
-
# mapping for simple cases with a 1:1 relation between text and token
|
2590
|
-
#
|
2591
2605
|
# source://regexp_parser//lib/regexp_parser/scanner/errors/scanner_error.rb#3
|
2592
2606
|
class Regexp::Scanner
|
2593
2607
|
# Emits an array with the details of the scanned pattern
|
2594
2608
|
#
|
2595
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2609
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2406
|
2596
2610
|
def emit(type, token, text); end
|
2597
2611
|
|
2598
2612
|
# only public for #||= to work on ruby <= 2.5
|
2599
2613
|
#
|
2600
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2614
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2431
|
2601
2615
|
def literal_run; end
|
2602
2616
|
|
2603
2617
|
# only public for #||= to work on ruby <= 2.5
|
2604
2618
|
#
|
2605
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2619
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2431
|
2606
2620
|
def literal_run=(_arg0); end
|
2607
2621
|
|
2608
2622
|
# @raise [PrematureEndError]
|
@@ -2615,168 +2629,168 @@ class Regexp::Scanner
|
|
2615
2629
|
# Appends one or more characters to the literal buffer, to be emitted later
|
2616
2630
|
# by a call to emit_literal.
|
2617
2631
|
#
|
2618
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2632
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2468
|
2619
2633
|
def append_literal(data, ts, te); end
|
2620
2634
|
|
2621
2635
|
# Returns the value of attribute block.
|
2622
2636
|
#
|
2623
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2637
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2624
2638
|
def block; end
|
2625
2639
|
|
2626
2640
|
# Sets the attribute block
|
2627
2641
|
#
|
2628
2642
|
# @param value the value to set the attribute block to.
|
2629
2643
|
#
|
2630
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2644
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2631
2645
|
def block=(_arg0); end
|
2632
2646
|
|
2633
2647
|
# Returns the value of attribute char_pos.
|
2634
2648
|
#
|
2635
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2649
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2636
2650
|
def char_pos; end
|
2637
2651
|
|
2638
2652
|
# Sets the attribute char_pos
|
2639
2653
|
#
|
2640
2654
|
# @param value the value to set the attribute char_pos to.
|
2641
2655
|
#
|
2642
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2656
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2643
2657
|
def char_pos=(_arg0); end
|
2644
2658
|
|
2645
2659
|
# Returns the value of attribute collect_tokens.
|
2646
2660
|
#
|
2647
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2661
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2648
2662
|
def collect_tokens; end
|
2649
2663
|
|
2650
2664
|
# Sets the attribute collect_tokens
|
2651
2665
|
#
|
2652
2666
|
# @param value the value to set the attribute collect_tokens to.
|
2653
2667
|
#
|
2654
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2668
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2655
2669
|
def collect_tokens=(_arg0); end
|
2656
2670
|
|
2657
2671
|
# Returns the value of attribute conditional_stack.
|
2658
2672
|
#
|
2659
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2673
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2660
2674
|
def conditional_stack; end
|
2661
2675
|
|
2662
2676
|
# Sets the attribute conditional_stack
|
2663
2677
|
#
|
2664
2678
|
# @param value the value to set the attribute conditional_stack to.
|
2665
2679
|
#
|
2666
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2680
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2667
2681
|
def conditional_stack=(_arg0); end
|
2668
2682
|
|
2669
2683
|
# Copy from ts to te from data as text
|
2670
2684
|
#
|
2671
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2685
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2462
|
2672
2686
|
def copy(data, ts, te); end
|
2673
2687
|
|
2674
2688
|
# Emits the literal run collected by calls to the append_literal method.
|
2675
2689
|
#
|
2676
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2690
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2473
|
2677
2691
|
def emit_literal; end
|
2678
2692
|
|
2679
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2693
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2508
|
2680
2694
|
def emit_meta_control_sequence(data, ts, te, token); end
|
2681
2695
|
|
2682
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2696
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2479
|
2683
2697
|
def emit_options(text); end
|
2684
2698
|
|
2685
2699
|
# Returns the value of attribute free_spacing.
|
2686
2700
|
#
|
2687
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2701
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2688
2702
|
def free_spacing; end
|
2689
2703
|
|
2690
2704
|
# Sets the attribute free_spacing
|
2691
2705
|
#
|
2692
2706
|
# @param value the value to set the attribute free_spacing to.
|
2693
2707
|
#
|
2694
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2708
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2695
2709
|
def free_spacing=(_arg0); end
|
2696
2710
|
|
2697
2711
|
# @return [Boolean]
|
2698
2712
|
#
|
2699
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2713
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2441
|
2700
2714
|
def free_spacing?(input_object, options); end
|
2701
2715
|
|
2702
2716
|
# Returns the value of attribute group_depth.
|
2703
2717
|
#
|
2704
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2718
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2705
2719
|
def group_depth; end
|
2706
2720
|
|
2707
2721
|
# Sets the attribute group_depth
|
2708
2722
|
#
|
2709
2723
|
# @param value the value to set the attribute group_depth to.
|
2710
2724
|
#
|
2711
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2725
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2712
2726
|
def group_depth=(_arg0); end
|
2713
2727
|
|
2714
2728
|
# @return [Boolean]
|
2715
2729
|
#
|
2716
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2730
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2453
|
2717
2731
|
def in_group?; end
|
2718
2732
|
|
2719
2733
|
# @return [Boolean]
|
2720
2734
|
#
|
2721
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2735
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2457
|
2722
2736
|
def in_set?; end
|
2723
2737
|
|
2724
2738
|
# Returns the value of attribute prev_token.
|
2725
2739
|
#
|
2726
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2740
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2727
2741
|
def prev_token; end
|
2728
2742
|
|
2729
2743
|
# Sets the attribute prev_token
|
2730
2744
|
#
|
2731
2745
|
# @param value the value to set the attribute prev_token to.
|
2732
2746
|
#
|
2733
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2747
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2734
2748
|
def prev_token=(_arg0); end
|
2735
2749
|
|
2736
2750
|
# Returns the value of attribute set_depth.
|
2737
2751
|
#
|
2738
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2752
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2739
2753
|
def set_depth; end
|
2740
2754
|
|
2741
2755
|
# Sets the attribute set_depth
|
2742
2756
|
#
|
2743
2757
|
# @param value the value to set the attribute set_depth to.
|
2744
2758
|
#
|
2745
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2759
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2746
2760
|
def set_depth=(_arg0); end
|
2747
2761
|
|
2748
2762
|
# Returns the value of attribute spacing_stack.
|
2749
2763
|
#
|
2750
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2764
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2751
2765
|
def spacing_stack; end
|
2752
2766
|
|
2753
2767
|
# Sets the attribute spacing_stack
|
2754
2768
|
#
|
2755
2769
|
# @param value the value to set the attribute spacing_stack to.
|
2756
2770
|
#
|
2757
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2771
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2758
2772
|
def spacing_stack=(_arg0); end
|
2759
2773
|
|
2760
2774
|
# Returns the value of attribute tokens.
|
2761
2775
|
#
|
2762
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2776
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2763
2777
|
def tokens; end
|
2764
2778
|
|
2765
2779
|
# Sets the attribute tokens
|
2766
2780
|
#
|
2767
2781
|
# @param value the value to set the attribute tokens to.
|
2768
2782
|
#
|
2769
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2783
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2435
|
2770
2784
|
def tokens=(_arg0); end
|
2771
2785
|
|
2772
2786
|
class << self
|
2773
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2787
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2392
|
2774
2788
|
def long_prop_map; end
|
2775
2789
|
|
2776
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2790
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2396
|
2777
2791
|
def parse_prop_map(name); end
|
2778
2792
|
|
2779
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2793
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2400
|
2780
2794
|
def posix_classes; end
|
2781
2795
|
|
2782
2796
|
# Scans the given regular expression text, or Regexp object and collects the
|
@@ -2791,7 +2805,7 @@ class Regexp::Scanner
|
|
2791
2805
|
|
2792
2806
|
# lazy-load property maps when first needed
|
2793
2807
|
#
|
2794
|
-
# source://regexp_parser//lib/regexp_parser/scanner.rb#
|
2808
|
+
# source://regexp_parser//lib/regexp_parser/scanner.rb#2388
|
2795
2809
|
def short_prop_map; end
|
2796
2810
|
end
|
2797
2811
|
end
|
@@ -3357,7 +3371,7 @@ Regexp::Syntax::Token::PosixClass::Type = T.let(T.unsafe(nil), Symbol)
|
|
3357
3371
|
|
3358
3372
|
# alias for symmetry between token symbol and Token module name
|
3359
3373
|
#
|
3360
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3374
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#749
|
3361
3375
|
Regexp::Syntax::Token::Property = Regexp::Syntax::Token::UnicodeProperty
|
3362
3376
|
|
3363
3377
|
# source://regexp_parser//lib/regexp_parser/syntax/token/quantifier.rb#3
|
@@ -3454,7 +3468,7 @@ Regexp::Syntax::Token::UnicodeProperty::Age_V3_1_0 = T.let(T.unsafe(nil), Array)
|
|
3454
3468
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#62
|
3455
3469
|
Regexp::Syntax::Token::UnicodeProperty::Age_V3_2_0 = T.let(T.unsafe(nil), Array)
|
3456
3470
|
|
3457
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3471
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#739
|
3458
3472
|
Regexp::Syntax::Token::UnicodeProperty::All = T.let(T.unsafe(nil), Array)
|
3459
3473
|
|
3460
3474
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#13
|
@@ -3505,19 +3519,28 @@ Regexp::Syntax::Token::UnicodeProperty::Derived_V2_4_0 = T.let(T.unsafe(nil), Ar
|
|
3505
3519
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#129
|
3506
3520
|
Regexp::Syntax::Token::UnicodeProperty::Derived_V2_5_0 = T.let(T.unsafe(nil), Array)
|
3507
3521
|
|
3508
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3522
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#724
|
3509
3523
|
Regexp::Syntax::Token::UnicodeProperty::Emoji = T.let(T.unsafe(nil), Array)
|
3510
3524
|
|
3511
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3525
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#694
|
3512
3526
|
Regexp::Syntax::Token::UnicodeProperty::Emoji_V2_5_0 = T.let(T.unsafe(nil), Array)
|
3513
3527
|
|
3514
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3528
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#702
|
3529
|
+
Regexp::Syntax::Token::UnicodeProperty::Emoji_V2_6_0 = T.let(T.unsafe(nil), Array)
|
3530
|
+
|
3531
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#722
|
3532
|
+
Regexp::Syntax::Token::UnicodeProperty::Enumerated = T.let(T.unsafe(nil), Array)
|
3533
|
+
|
3534
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#706
|
3535
|
+
Regexp::Syntax::Token::UnicodeProperty::Enumerated_V2_4_0 = T.let(T.unsafe(nil), Array)
|
3536
|
+
|
3537
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#742
|
3515
3538
|
Regexp::Syntax::Token::UnicodeProperty::NonType = T.let(T.unsafe(nil), Symbol)
|
3516
3539
|
|
3517
3540
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#11
|
3518
3541
|
Regexp::Syntax::Token::UnicodeProperty::POSIX = T.let(T.unsafe(nil), Array)
|
3519
3542
|
|
3520
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3543
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#332
|
3521
3544
|
Regexp::Syntax::Token::UnicodeProperty::Script = T.let(T.unsafe(nil), Array)
|
3522
3545
|
|
3523
3546
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#135
|
@@ -3553,76 +3576,76 @@ Regexp::Syntax::Token::UnicodeProperty::Script_V3_1_0 = T.let(T.unsafe(nil), Arr
|
|
3553
3576
|
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#322
|
3554
3577
|
Regexp::Syntax::Token::UnicodeProperty::Script_V3_2_0 = T.let(T.unsafe(nil), Array)
|
3555
3578
|
|
3556
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3579
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#741
|
3557
3580
|
Regexp::Syntax::Token::UnicodeProperty::Type = T.let(T.unsafe(nil), Symbol)
|
3558
3581
|
|
3559
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3582
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#692
|
3560
3583
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock = T.let(T.unsafe(nil), Array)
|
3561
3584
|
|
3562
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3585
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#334
|
3563
3586
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V1_9_0 = T.let(T.unsafe(nil), Array)
|
3564
3587
|
|
3565
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3588
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#433
|
3566
3589
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_0_0 = T.let(T.unsafe(nil), Array)
|
3567
3590
|
|
3568
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3591
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#561
|
3569
3592
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_2_0 = T.let(T.unsafe(nil), Array)
|
3570
3593
|
|
3571
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3594
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#596
|
3572
3595
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_3_0 = T.let(T.unsafe(nil), Array)
|
3573
3596
|
|
3574
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3597
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#609
|
3575
3598
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_4_0 = T.let(T.unsafe(nil), Array)
|
3576
3599
|
|
3577
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3600
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#623
|
3578
3601
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_5_0 = T.let(T.unsafe(nil), Array)
|
3579
3602
|
|
3580
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3603
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#633
|
3581
3604
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_6_0 = T.let(T.unsafe(nil), Array)
|
3582
3605
|
|
3583
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3606
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#647
|
3584
3607
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V2_6_2 = T.let(T.unsafe(nil), Array)
|
3585
3608
|
|
3586
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3609
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#659
|
3587
3610
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V3_1_0 = T.let(T.unsafe(nil), Array)
|
3588
3611
|
|
3589
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3612
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#670
|
3590
3613
|
Regexp::Syntax::Token::UnicodeProperty::UnicodeBlock_V3_2_0 = T.let(T.unsafe(nil), Array)
|
3591
3614
|
|
3592
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3615
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#726
|
3593
3616
|
Regexp::Syntax::Token::UnicodeProperty::V1_9_0 = T.let(T.unsafe(nil), Array)
|
3594
3617
|
|
3595
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3618
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#727
|
3596
3619
|
Regexp::Syntax::Token::UnicodeProperty::V1_9_3 = T.let(T.unsafe(nil), Array)
|
3597
3620
|
|
3598
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3621
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#728
|
3599
3622
|
Regexp::Syntax::Token::UnicodeProperty::V2_0_0 = T.let(T.unsafe(nil), Array)
|
3600
3623
|
|
3601
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3624
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#729
|
3602
3625
|
Regexp::Syntax::Token::UnicodeProperty::V2_2_0 = T.let(T.unsafe(nil), Array)
|
3603
3626
|
|
3604
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3627
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#730
|
3605
3628
|
Regexp::Syntax::Token::UnicodeProperty::V2_3_0 = T.let(T.unsafe(nil), Array)
|
3606
3629
|
|
3607
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3630
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#731
|
3608
3631
|
Regexp::Syntax::Token::UnicodeProperty::V2_4_0 = T.let(T.unsafe(nil), Array)
|
3609
3632
|
|
3610
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3633
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#732
|
3611
3634
|
Regexp::Syntax::Token::UnicodeProperty::V2_5_0 = T.let(T.unsafe(nil), Array)
|
3612
3635
|
|
3613
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3636
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#733
|
3614
3637
|
Regexp::Syntax::Token::UnicodeProperty::V2_6_0 = T.let(T.unsafe(nil), Array)
|
3615
3638
|
|
3616
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3639
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#734
|
3617
3640
|
Regexp::Syntax::Token::UnicodeProperty::V2_6_2 = T.let(T.unsafe(nil), Array)
|
3618
3641
|
|
3619
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3642
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#735
|
3620
3643
|
Regexp::Syntax::Token::UnicodeProperty::V2_6_3 = T.let(T.unsafe(nil), Array)
|
3621
3644
|
|
3622
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3645
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#736
|
3623
3646
|
Regexp::Syntax::Token::UnicodeProperty::V3_1_0 = T.let(T.unsafe(nil), Array)
|
3624
3647
|
|
3625
|
-
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#
|
3648
|
+
# source://regexp_parser//lib/regexp_parser/syntax/token/unicode_property.rb#737
|
3626
3649
|
Regexp::Syntax::Token::UnicodeProperty::V3_2_0 = T.let(T.unsafe(nil), Array)
|
3627
3650
|
|
3628
3651
|
# source://regexp_parser//lib/regexp_parser/syntax/version_lookup.rb#12
|