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

Add a value for terms.

This commit is contained in:
Rob Rix 2015-10-21 15:58:00 -04:00
parent 2aa2e49f41
commit ebd101b22f

View File

@ -57,6 +57,12 @@
return this;
}
function Term(range, syntax) {
this.range = range;
this.syntax = syntax;
return this;
}
function toDOM(view) {
if (view instanceof Delete) {
var element = document.createElement("div");