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

Convert CofreeJSON to Term.

This commit is contained in:
Rob Rix 2015-10-30 14:56:05 -04:00
parent 1850fdeeb6
commit 9476deb5d6

View File

@ -90,6 +90,20 @@ func termWithInput(language: TSLanguage)(_ string: String) throws -> Term {
}
}
func toTerm(term: CofreeJSON) -> Term {
let annotation = Info(range: term.extract, categories: [])
switch term.unwrap {
case let .Leaf(a):
return Term(Info(range: term.extract, categories: a.categories), Syntax<Term, String>.Leaf(String(a)))
case let .Indexed(i):
return Term(annotation, .Indexed(i.map(toTerm)))
case let .Fixed(f):
return Term(annotation, .Fixed(f.map(toTerm)))
case let .Keyed(k):
return Term(annotation, .Keyed(Dictionary(elements: k.map { ($0, toTerm($1)) })))
}
}
func parserForType(type: String) -> (String throws -> Term)? {
return Source.languagesByType[type].map(termWithInput)
}