function isList(x: sexp.Item): x is sexp.List {
    return x && x.type === 'list'
}