1
1
mirror of https://github.com/github/semantic.git synced 2024-12-11 08:45:48 +03:00
semantic/prototype/UI/term.js
2015-11-03 13:59:57 -05:00

15 lines
264 B
JavaScript

function termFromJSON(json) {
return new Term({
extract: json.extract,
unwrap: new Syntax(json.unwrap, function(x) {
return termFromJSON(x);
})
});
}
function Term(object) {
this.extract = object.extract;
this.unwrap = object.unwrap;
return this;
}