[NFC][Coroutines] Use structured binding with llvm::enumerate in CoroSplit (#116879)
[llvm-project.git] / clang / www / analyzer / scripts / menu.js
blob6b393c081c8563b564b8a8ae799792472a59ca85
1 startList = function() {
2 if (document.all&&document.getElementById) {
3 navRoot = document.getElementById("nav");
4 for (i=0; i<navRoot.childNodes.length; i++) {
5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
8 this.className+=" over";
10 node.onmouseout=function() {
11 this.className=this.className.replace(" over", "");
17 window.onload=startList;