ink_ir/ir/item_impl/
iter.rs1use super::{
16 CallableWithSelector,
17 ImplItem,
18 ItemImpl,
19};
20use crate::ir;
21
22pub struct IterConstructors<'a> {
25 item_impl: &'a ir::ItemImpl,
26 impl_items: core::slice::Iter<'a, ImplItem>,
27}
28
29impl<'a> IterConstructors<'a> {
30 pub(super) fn new(item_impl: &'a ItemImpl) -> Self {
32 Self {
33 item_impl,
34 impl_items: item_impl.items.iter(),
35 }
36 }
37}
38
39impl<'a> Iterator for IterConstructors<'a> {
40 type Item = CallableWithSelector<'a, ir::Constructor>;
41
42 fn next(&mut self) -> Option<Self::Item> {
43 'repeat: loop {
44 match self.impl_items.next() {
45 None => return None,
46 Some(impl_item) => {
47 if let Some(constructor) = impl_item.filter_map_constructor() {
48 return Some(CallableWithSelector::new(
49 self.item_impl,
50 constructor,
51 ))
52 }
53 continue 'repeat
54 }
55 }
56 }
57 }
58}
59
60pub struct IterMessages<'a> {
63 item_impl: &'a ir::ItemImpl,
64 impl_items: core::slice::Iter<'a, ImplItem>,
65}
66
67impl<'a> IterMessages<'a> {
68 pub(super) fn new(item_impl: &'a ItemImpl) -> Self {
70 Self {
71 item_impl,
72 impl_items: item_impl.items.iter(),
73 }
74 }
75}
76
77impl<'a> Iterator for IterMessages<'a> {
78 type Item = CallableWithSelector<'a, ir::Message>;
79
80 fn next(&mut self) -> Option<Self::Item> {
81 'repeat: loop {
82 match self.impl_items.next() {
83 None => return None,
84 Some(impl_item) => {
85 if let Some(message) = impl_item.filter_map_message() {
86 return Some(CallableWithSelector::new(self.item_impl, message))
87 }
88 continue 'repeat
89 }
90 }
91 }
92 }
93}