mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 07:03:29 +00:00
Merge pull request #273 from lightpanda-io/nodelist-iterator
nodelist: remove debug log
This commit is contained in:
@@ -156,21 +156,18 @@ pub const NodeList = struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn _keys(self: *NodeList) U32Iterator {
|
pub fn _keys(self: *NodeList) U32Iterator {
|
||||||
log.debug("keys", .{});
|
|
||||||
return .{
|
return .{
|
||||||
.length = self.get_length(),
|
.length = self.get_length(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn _values(self: *NodeList) NodeListIterator {
|
pub fn _values(self: *NodeList) NodeListIterator {
|
||||||
log.debug("values", .{});
|
|
||||||
return .{
|
return .{
|
||||||
.coll = self,
|
.coll = self,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn _symbol_iterator(self: *NodeList) NodeListIterator {
|
pub fn _symbol_iterator(self: *NodeList) NodeListIterator {
|
||||||
log.debug("symbol", .{});
|
|
||||||
return self._values();
|
return self._values();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user