Skip to content

Commit 53b4cd9

Browse files
committed
Implement more method hints under the new system
1 parent 1440801 commit 53b4cd9

36 files changed

+9393
-1645
lines changed

.vs/deemon-v141.vcxproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,16 @@
238238
<ClInclude Include="..\src\deemon\execute\code-invoke-kw.c.inl" />
239239
<ClInclude Include="..\src\deemon\execute\code-invoke.c.inl" />
240240
<ClInclude Include="..\src\deemon\execute\function-wrappers.h" />
241+
<ClInclude Include="..\src\deemon\method-hints\map_operator_contains.h" />
242+
<ClInclude Include="..\src\deemon\method-hints\map_operator_enumerate.h" />
243+
<ClInclude Include="..\src\deemon\method-hints\map_operator_getitem.h" />
241244
<ClInclude Include="..\src\deemon\method-hints\method-hints.h" />
242245
<ClInclude Include="..\src\deemon\method-hints\seq_all.h" />
243246
<ClInclude Include="..\src\deemon\method-hints\seq_any.h" />
244247
<ClInclude Include="..\src\deemon\method-hints\seq_append.h" />
245248
<ClInclude Include="..\src\deemon\method-hints\seq_clear.h" />
249+
<ClInclude Include="..\src\deemon\method-hints\seq_count.h" />
250+
<ClInclude Include="..\src\deemon\method-hints\seq_enumerate_items.h" />
246251
<ClInclude Include="..\src\deemon\method-hints\seq_erase.h" />
247252
<ClInclude Include="..\src\deemon\method-hints\seq_extend.h" />
248253
<ClInclude Include="..\src\deemon\method-hints\seq_find.h" />
@@ -254,12 +259,16 @@
254259
<ClInclude Include="..\src\deemon\method-hints\seq_operator_cmp.h" />
255260
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare.h" />
256261
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare_eq.h" />
262+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_contains.h" />
257263
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delitem.h" />
258264
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delrange.h" />
259265
<ClInclude Include="..\src\deemon\method-hints\seq_operator_enumerate.h" />
266+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_foreach_reverse.h" />
260267
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getitem.h" />
261268
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getrange.h" />
262269
<ClInclude Include="..\src\deemon\method-hints\seq_operator_hash.h" />
270+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_add.h" />
271+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_mul.h" />
263272
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iter.h" />
264273
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iterkeys.h" />
265274
<ClInclude Include="..\src\deemon\method-hints\seq_operator_setitem.h" />
@@ -269,7 +278,9 @@
269278
<ClInclude Include="..\src\deemon\method-hints\seq_pop.h" />
270279
<ClInclude Include="..\src\deemon\method-hints\seq_pushfront.h" />
271280
<ClInclude Include="..\src\deemon\method-hints\seq_xchitem.h" />
281+
<ClInclude Include="..\src\deemon\method-hints\set_operator_hash.h" />
272282
<ClInclude Include="..\src\deemon\method-hints\set_operator_iter.h" />
283+
<ClInclude Include="..\src\deemon\method-hints\set_operator_size.h" />
273284
<ClInclude Include="..\src\deemon\objects\dict-delitem-impl.c.inl" />
274285
<ClInclude Include="..\src\deemon\objects\dict-firstlast-impl.c.inl" />
275286
<ClInclude Include="..\src\deemon\objects\dict-getitem-impl.c.inl" />
@@ -312,6 +323,7 @@
312323
<ClInclude Include="..\src\deemon\objects\seq\default-sets.h" />
313324
<ClInclude Include="..\src\deemon\objects\seq\each-fastpass.c.inl" />
314325
<ClInclude Include="..\src\deemon\objects\seq\each.h" />
326+
<ClInclude Include="..\src\deemon\objects\seq\enumerate-cb.h" />
315327
<ClInclude Include="..\src\deemon\objects\seq\filter.h" />
316328
<ClInclude Include="..\src\deemon\objects\seq\flat.h" />
317329
<ClInclude Include="..\src\deemon\objects\seq\hashfilter.h" />
@@ -504,6 +516,7 @@
504516
<ClCompile Include="..\src\deemon\objects\seq\default-sequences.c" />
505517
<ClCompile Include="..\src\deemon\objects\seq\default-sets.c" />
506518
<ClCompile Include="..\src\deemon\objects\seq\each.c" />
519+
<ClCompile Include="..\src\deemon\objects\seq\enumerate-cb.c" />
507520
<ClCompile Include="..\src\deemon\objects\seq\fastseq.c" />
508521
<ClCompile Include="..\src\deemon\objects\seq\filter.c" />
509522
<ClCompile Include="..\src\deemon\objects\seq\flat.c" />

.vs/deemon-v141.vcxproj.filters

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,15 @@
690690
<ClInclude Include="..\src\deemon\execute\function-wrappers.h">
691691
<Filter>src\execute</Filter>
692692
</ClInclude>
693+
<ClInclude Include="..\src\deemon\method-hints\map_operator_contains.h">
694+
<Filter>src\method-hints</Filter>
695+
</ClInclude>
696+
<ClInclude Include="..\src\deemon\method-hints\map_operator_enumerate.h">
697+
<Filter>src\method-hints</Filter>
698+
</ClInclude>
699+
<ClInclude Include="..\src\deemon\method-hints\map_operator_getitem.h">
700+
<Filter>src\method-hints</Filter>
701+
</ClInclude>
693702
<ClInclude Include="..\src\deemon\method-hints\method-hints.h">
694703
<Filter>src\method-hints</Filter>
695704
</ClInclude>
@@ -705,6 +714,12 @@
705714
<ClInclude Include="..\src\deemon\method-hints\seq_clear.h">
706715
<Filter>src\method-hints</Filter>
707716
</ClInclude>
717+
<ClInclude Include="..\src\deemon\method-hints\seq_count.h">
718+
<Filter>src\method-hints</Filter>
719+
</ClInclude>
720+
<ClInclude Include="..\src\deemon\method-hints\seq_enumerate_items.h">
721+
<Filter>src\method-hints</Filter>
722+
</ClInclude>
708723
<ClInclude Include="..\src\deemon\method-hints\seq_erase.h">
709724
<Filter>src\method-hints</Filter>
710725
</ClInclude>
@@ -738,6 +753,9 @@
738753
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare_eq.h">
739754
<Filter>src\method-hints</Filter>
740755
</ClInclude>
756+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_contains.h">
757+
<Filter>src\method-hints</Filter>
758+
</ClInclude>
741759
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delitem.h">
742760
<Filter>src\method-hints</Filter>
743761
</ClInclude>
@@ -747,6 +765,9 @@
747765
<ClInclude Include="..\src\deemon\method-hints\seq_operator_enumerate.h">
748766
<Filter>src\method-hints</Filter>
749767
</ClInclude>
768+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_foreach_reverse.h">
769+
<Filter>src\method-hints</Filter>
770+
</ClInclude>
750771
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getitem.h">
751772
<Filter>src\method-hints</Filter>
752773
</ClInclude>
@@ -756,6 +777,12 @@
756777
<ClInclude Include="..\src\deemon\method-hints\seq_operator_hash.h">
757778
<Filter>src\method-hints</Filter>
758779
</ClInclude>
780+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_add.h">
781+
<Filter>src\method-hints</Filter>
782+
</ClInclude>
783+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_mul.h">
784+
<Filter>src\method-hints</Filter>
785+
</ClInclude>
759786
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iter.h">
760787
<Filter>src\method-hints</Filter>
761788
</ClInclude>
@@ -783,9 +810,15 @@
783810
<ClInclude Include="..\src\deemon\method-hints\seq_xchitem.h">
784811
<Filter>src\method-hints</Filter>
785812
</ClInclude>
813+
<ClInclude Include="..\src\deemon\method-hints\set_operator_hash.h">
814+
<Filter>src\method-hints</Filter>
815+
</ClInclude>
786816
<ClInclude Include="..\src\deemon\method-hints\set_operator_iter.h">
787817
<Filter>src\method-hints</Filter>
788818
</ClInclude>
819+
<ClInclude Include="..\src\deemon\method-hints\set_operator_size.h">
820+
<Filter>src\method-hints</Filter>
821+
</ClInclude>
789822
<ClInclude Include="..\src\deemon\objects\dict-delitem-impl.c.inl">
790823
<Filter>src\objects</Filter>
791824
</ClInclude>
@@ -912,6 +945,9 @@
912945
<ClInclude Include="..\src\deemon\objects\seq\each.h">
913946
<Filter>src\objects\seq</Filter>
914947
</ClInclude>
948+
<ClInclude Include="..\src\deemon\objects\seq\enumerate-cb.h">
949+
<Filter>src\objects\seq</Filter>
950+
</ClInclude>
915951
<ClInclude Include="..\src\deemon\objects\seq\filter.h">
916952
<Filter>src\objects\seq</Filter>
917953
</ClInclude>
@@ -1484,6 +1520,9 @@
14841520
<ClCompile Include="..\src\deemon\objects\seq\each.c">
14851521
<Filter>src\objects\seq</Filter>
14861522
</ClCompile>
1523+
<ClCompile Include="..\src\deemon\objects\seq\enumerate-cb.c">
1524+
<Filter>src\objects\seq</Filter>
1525+
</ClCompile>
14871526
<ClCompile Include="..\src\deemon\objects\seq\fastseq.c">
14881527
<Filter>src\objects\seq</Filter>
14891528
</ClCompile>

.vs/deemon-v142.vcxproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,16 @@
238238
<ClInclude Include="..\src\deemon\execute\code-invoke-kw.c.inl" />
239239
<ClInclude Include="..\src\deemon\execute\code-invoke.c.inl" />
240240
<ClInclude Include="..\src\deemon\execute\function-wrappers.h" />
241+
<ClInclude Include="..\src\deemon\method-hints\map_operator_contains.h" />
242+
<ClInclude Include="..\src\deemon\method-hints\map_operator_enumerate.h" />
243+
<ClInclude Include="..\src\deemon\method-hints\map_operator_getitem.h" />
241244
<ClInclude Include="..\src\deemon\method-hints\method-hints.h" />
242245
<ClInclude Include="..\src\deemon\method-hints\seq_all.h" />
243246
<ClInclude Include="..\src\deemon\method-hints\seq_any.h" />
244247
<ClInclude Include="..\src\deemon\method-hints\seq_append.h" />
245248
<ClInclude Include="..\src\deemon\method-hints\seq_clear.h" />
249+
<ClInclude Include="..\src\deemon\method-hints\seq_count.h" />
250+
<ClInclude Include="..\src\deemon\method-hints\seq_enumerate_items.h" />
246251
<ClInclude Include="..\src\deemon\method-hints\seq_erase.h" />
247252
<ClInclude Include="..\src\deemon\method-hints\seq_extend.h" />
248253
<ClInclude Include="..\src\deemon\method-hints\seq_find.h" />
@@ -254,12 +259,16 @@
254259
<ClInclude Include="..\src\deemon\method-hints\seq_operator_cmp.h" />
255260
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare.h" />
256261
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare_eq.h" />
262+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_contains.h" />
257263
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delitem.h" />
258264
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delrange.h" />
259265
<ClInclude Include="..\src\deemon\method-hints\seq_operator_enumerate.h" />
266+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_foreach_reverse.h" />
260267
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getitem.h" />
261268
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getrange.h" />
262269
<ClInclude Include="..\src\deemon\method-hints\seq_operator_hash.h" />
270+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_add.h" />
271+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_mul.h" />
263272
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iter.h" />
264273
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iterkeys.h" />
265274
<ClInclude Include="..\src\deemon\method-hints\seq_operator_setitem.h" />
@@ -269,7 +278,9 @@
269278
<ClInclude Include="..\src\deemon\method-hints\seq_pop.h" />
270279
<ClInclude Include="..\src\deemon\method-hints\seq_pushfront.h" />
271280
<ClInclude Include="..\src\deemon\method-hints\seq_xchitem.h" />
281+
<ClInclude Include="..\src\deemon\method-hints\set_operator_hash.h" />
272282
<ClInclude Include="..\src\deemon\method-hints\set_operator_iter.h" />
283+
<ClInclude Include="..\src\deemon\method-hints\set_operator_size.h" />
273284
<ClInclude Include="..\src\deemon\objects\dict-delitem-impl.c.inl" />
274285
<ClInclude Include="..\src\deemon\objects\dict-firstlast-impl.c.inl" />
275286
<ClInclude Include="..\src\deemon\objects\dict-getitem-impl.c.inl" />
@@ -312,6 +323,7 @@
312323
<ClInclude Include="..\src\deemon\objects\seq\default-sets.h" />
313324
<ClInclude Include="..\src\deemon\objects\seq\each-fastpass.c.inl" />
314325
<ClInclude Include="..\src\deemon\objects\seq\each.h" />
326+
<ClInclude Include="..\src\deemon\objects\seq\enumerate-cb.h" />
315327
<ClInclude Include="..\src\deemon\objects\seq\filter.h" />
316328
<ClInclude Include="..\src\deemon\objects\seq\flat.h" />
317329
<ClInclude Include="..\src\deemon\objects\seq\hashfilter.h" />
@@ -504,6 +516,7 @@
504516
<ClCompile Include="..\src\deemon\objects\seq\default-sequences.c" />
505517
<ClCompile Include="..\src\deemon\objects\seq\default-sets.c" />
506518
<ClCompile Include="..\src\deemon\objects\seq\each.c" />
519+
<ClCompile Include="..\src\deemon\objects\seq\enumerate-cb.c" />
507520
<ClCompile Include="..\src\deemon\objects\seq\fastseq.c" />
508521
<ClCompile Include="..\src\deemon\objects\seq\filter.c" />
509522
<ClCompile Include="..\src\deemon\objects\seq\flat.c" />

.vs/deemon-v142.vcxproj.filters

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,15 @@
690690
<ClInclude Include="..\src\deemon\execute\function-wrappers.h">
691691
<Filter>src\execute</Filter>
692692
</ClInclude>
693+
<ClInclude Include="..\src\deemon\method-hints\map_operator_contains.h">
694+
<Filter>src\method-hints</Filter>
695+
</ClInclude>
696+
<ClInclude Include="..\src\deemon\method-hints\map_operator_enumerate.h">
697+
<Filter>src\method-hints</Filter>
698+
</ClInclude>
699+
<ClInclude Include="..\src\deemon\method-hints\map_operator_getitem.h">
700+
<Filter>src\method-hints</Filter>
701+
</ClInclude>
693702
<ClInclude Include="..\src\deemon\method-hints\method-hints.h">
694703
<Filter>src\method-hints</Filter>
695704
</ClInclude>
@@ -705,6 +714,12 @@
705714
<ClInclude Include="..\src\deemon\method-hints\seq_clear.h">
706715
<Filter>src\method-hints</Filter>
707716
</ClInclude>
717+
<ClInclude Include="..\src\deemon\method-hints\seq_count.h">
718+
<Filter>src\method-hints</Filter>
719+
</ClInclude>
720+
<ClInclude Include="..\src\deemon\method-hints\seq_enumerate_items.h">
721+
<Filter>src\method-hints</Filter>
722+
</ClInclude>
708723
<ClInclude Include="..\src\deemon\method-hints\seq_erase.h">
709724
<Filter>src\method-hints</Filter>
710725
</ClInclude>
@@ -738,6 +753,9 @@
738753
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare_eq.h">
739754
<Filter>src\method-hints</Filter>
740755
</ClInclude>
756+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_contains.h">
757+
<Filter>src\method-hints</Filter>
758+
</ClInclude>
741759
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delitem.h">
742760
<Filter>src\method-hints</Filter>
743761
</ClInclude>
@@ -747,6 +765,9 @@
747765
<ClInclude Include="..\src\deemon\method-hints\seq_operator_enumerate.h">
748766
<Filter>src\method-hints</Filter>
749767
</ClInclude>
768+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_foreach_reverse.h">
769+
<Filter>src\method-hints</Filter>
770+
</ClInclude>
750771
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getitem.h">
751772
<Filter>src\method-hints</Filter>
752773
</ClInclude>
@@ -756,6 +777,12 @@
756777
<ClInclude Include="..\src\deemon\method-hints\seq_operator_hash.h">
757778
<Filter>src\method-hints</Filter>
758779
</ClInclude>
780+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_add.h">
781+
<Filter>src\method-hints</Filter>
782+
</ClInclude>
783+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_mul.h">
784+
<Filter>src\method-hints</Filter>
785+
</ClInclude>
759786
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iter.h">
760787
<Filter>src\method-hints</Filter>
761788
</ClInclude>
@@ -783,9 +810,15 @@
783810
<ClInclude Include="..\src\deemon\method-hints\seq_xchitem.h">
784811
<Filter>src\method-hints</Filter>
785812
</ClInclude>
813+
<ClInclude Include="..\src\deemon\method-hints\set_operator_hash.h">
814+
<Filter>src\method-hints</Filter>
815+
</ClInclude>
786816
<ClInclude Include="..\src\deemon\method-hints\set_operator_iter.h">
787817
<Filter>src\method-hints</Filter>
788818
</ClInclude>
819+
<ClInclude Include="..\src\deemon\method-hints\set_operator_size.h">
820+
<Filter>src\method-hints</Filter>
821+
</ClInclude>
789822
<ClInclude Include="..\src\deemon\objects\dict-delitem-impl.c.inl">
790823
<Filter>src\objects</Filter>
791824
</ClInclude>
@@ -912,6 +945,9 @@
912945
<ClInclude Include="..\src\deemon\objects\seq\each.h">
913946
<Filter>src\objects\seq</Filter>
914947
</ClInclude>
948+
<ClInclude Include="..\src\deemon\objects\seq\enumerate-cb.h">
949+
<Filter>src\objects\seq</Filter>
950+
</ClInclude>
915951
<ClInclude Include="..\src\deemon\objects\seq\filter.h">
916952
<Filter>src\objects\seq</Filter>
917953
</ClInclude>
@@ -1484,6 +1520,9 @@
14841520
<ClCompile Include="..\src\deemon\objects\seq\each.c">
14851521
<Filter>src\objects\seq</Filter>
14861522
</ClCompile>
1523+
<ClCompile Include="..\src\deemon\objects\seq\enumerate-cb.c">
1524+
<Filter>src\objects\seq</Filter>
1525+
</ClCompile>
14871526
<ClCompile Include="..\src\deemon\objects\seq\fastseq.c">
14881527
<Filter>src\objects\seq</Filter>
14891528
</ClCompile>

.vs/deemon-v143.vcxproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,16 @@
238238
<ClInclude Include="..\src\deemon\execute\code-invoke-kw.c.inl" />
239239
<ClInclude Include="..\src\deemon\execute\code-invoke.c.inl" />
240240
<ClInclude Include="..\src\deemon\execute\function-wrappers.h" />
241+
<ClInclude Include="..\src\deemon\method-hints\map_operator_contains.h" />
242+
<ClInclude Include="..\src\deemon\method-hints\map_operator_enumerate.h" />
243+
<ClInclude Include="..\src\deemon\method-hints\map_operator_getitem.h" />
241244
<ClInclude Include="..\src\deemon\method-hints\method-hints.h" />
242245
<ClInclude Include="..\src\deemon\method-hints\seq_all.h" />
243246
<ClInclude Include="..\src\deemon\method-hints\seq_any.h" />
244247
<ClInclude Include="..\src\deemon\method-hints\seq_append.h" />
245248
<ClInclude Include="..\src\deemon\method-hints\seq_clear.h" />
249+
<ClInclude Include="..\src\deemon\method-hints\seq_count.h" />
250+
<ClInclude Include="..\src\deemon\method-hints\seq_enumerate_items.h" />
246251
<ClInclude Include="..\src\deemon\method-hints\seq_erase.h" />
247252
<ClInclude Include="..\src\deemon\method-hints\seq_extend.h" />
248253
<ClInclude Include="..\src\deemon\method-hints\seq_find.h" />
@@ -254,12 +259,16 @@
254259
<ClInclude Include="..\src\deemon\method-hints\seq_operator_cmp.h" />
255260
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare.h" />
256261
<ClInclude Include="..\src\deemon\method-hints\seq_operator_compare_eq.h" />
262+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_contains.h" />
257263
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delitem.h" />
258264
<ClInclude Include="..\src\deemon\method-hints\seq_operator_delrange.h" />
259265
<ClInclude Include="..\src\deemon\method-hints\seq_operator_enumerate.h" />
266+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_foreach_reverse.h" />
260267
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getitem.h" />
261268
<ClInclude Include="..\src\deemon\method-hints\seq_operator_getrange.h" />
262269
<ClInclude Include="..\src\deemon\method-hints\seq_operator_hash.h" />
270+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_add.h" />
271+
<ClInclude Include="..\src\deemon\method-hints\seq_operator_inplace_mul.h" />
263272
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iter.h" />
264273
<ClInclude Include="..\src\deemon\method-hints\seq_operator_iterkeys.h" />
265274
<ClInclude Include="..\src\deemon\method-hints\seq_operator_setitem.h" />
@@ -269,7 +278,9 @@
269278
<ClInclude Include="..\src\deemon\method-hints\seq_pop.h" />
270279
<ClInclude Include="..\src\deemon\method-hints\seq_pushfront.h" />
271280
<ClInclude Include="..\src\deemon\method-hints\seq_xchitem.h" />
281+
<ClInclude Include="..\src\deemon\method-hints\set_operator_hash.h" />
272282
<ClInclude Include="..\src\deemon\method-hints\set_operator_iter.h" />
283+
<ClInclude Include="..\src\deemon\method-hints\set_operator_size.h" />
273284
<ClInclude Include="..\src\deemon\objects\dict-delitem-impl.c.inl" />
274285
<ClInclude Include="..\src\deemon\objects\dict-firstlast-impl.c.inl" />
275286
<ClInclude Include="..\src\deemon\objects\dict-getitem-impl.c.inl" />
@@ -312,6 +323,7 @@
312323
<ClInclude Include="..\src\deemon\objects\seq\default-sets.h" />
313324
<ClInclude Include="..\src\deemon\objects\seq\each-fastpass.c.inl" />
314325
<ClInclude Include="..\src\deemon\objects\seq\each.h" />
326+
<ClInclude Include="..\src\deemon\objects\seq\enumerate-cb.h" />
315327
<ClInclude Include="..\src\deemon\objects\seq\filter.h" />
316328
<ClInclude Include="..\src\deemon\objects\seq\flat.h" />
317329
<ClInclude Include="..\src\deemon\objects\seq\hashfilter.h" />
@@ -504,6 +516,7 @@
504516
<ClCompile Include="..\src\deemon\objects\seq\default-sequences.c" />
505517
<ClCompile Include="..\src\deemon\objects\seq\default-sets.c" />
506518
<ClCompile Include="..\src\deemon\objects\seq\each.c" />
519+
<ClCompile Include="..\src\deemon\objects\seq\enumerate-cb.c" />
507520
<ClCompile Include="..\src\deemon\objects\seq\fastseq.c" />
508521
<ClCompile Include="..\src\deemon\objects\seq\filter.c" />
509522
<ClCompile Include="..\src\deemon\objects\seq\flat.c" />

0 commit comments

Comments
 (0)