1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 08:25:19 +03:00

Add a function for processing keyed syntax elements.

This commit is contained in:
Rob Rix 2015-10-21 11:17:25 -04:00
parent 9aa2261b7d
commit 81cfdb5020

View File

@ -54,6 +54,12 @@
syntax(array[index]);
}
}
function keyed(object) {
for (key in object) {
syntax(object[key]);
}
}
</script>
</head>
<body>