Exemplo n.º 1
0
 def lines(self):
     return intern.get_all(self.id, [from_id])
Exemplo n.º 2
0
 def from_id(cls, id):
     head, args = intern.get_all(id, from_id, [from_id])
     return cls(head, args)
Exemplo n.º 3
0
 def from_id(cls, id):
     type, (args, indices) = intern.get_all(id, 0, ([from_id], [0]))
     return cls(type, args, indices)
Exemplo n.º 4
0
 def from_id(cls, id):
     index = intern.get_all(id, 0)
     return cls(index)
Exemplo n.º 5
0
 def from_id(cls, id):
     name = intern.get_all(id, "")
     return cls(ndex)
Exemplo n.º 6
0
def from_id(id):
    type_id, body = intern.get_all(id, 0, None)
    return by_type[type_id].from_id(body)
Exemplo n.º 7
0
 def from_id(cls, id):
     return Template(intern.get_all(id, [""]))