1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Stub in handling of leaf nodes.

This commit is contained in:
Rob Rix 2015-10-21 16:27:08 -04:00
parent 276f95c669
commit 6ef105ab08

View File

@ -82,6 +82,8 @@
for (k in model.syntax) {
element.appendChild(toDOM(model.syntax[k]));
}
} else if (model.syntax instanceof Leaf) {
// ?
}
return element;