Skip to content

Commit

Permalink
nodelist: remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
krichprollsch committed Sep 25, 2024
1 parent aefab86 commit cce36c5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/dom/nodelist.zig
Original file line number Diff line number Diff line change
Expand Up @@ -156,21 +156,18 @@ pub const NodeList = struct {
}

pub fn _keys(self: *NodeList) U32Iterator {
log.debug("keys", .{});
return .{
.length = self.get_length(),
};
}

pub fn _values(self: *NodeList) NodeListIterator {
log.debug("values", .{});
return .{
.coll = self,
};
}

pub fn _symbol_iterator(self: *NodeList) NodeListIterator {
log.debug("symbol", .{});
return self._values();
}

Expand Down

0 comments on commit cce36c5

Please sign in to comment.