fn updateEntryPoints() error
fn updateEntryPoints() error{OutOfMemory}!void { var html: std.ArrayList(u8) = .empty; defer html.deinit(gpa); for (entry_points.items) |sli| { try html.appendSlice(gpa, "<li>"); try sli.sourceLocationLinkHtml(&html, selected_source_location == sli); try html.appendSlice(gpa, "</li>\n"); } js.updateEntryPoints(html.items.ptr, html.items.len); }