コード例 #1
0
 def interpret(self, match):
     actor = IsPerson() + StarsIn(match.tvshow)
     name = LabelOf(actor)
     return name, "enum"
コード例 #2
0
 def interpret(self, match):
     _movie, i, j = match.movie
     actor = NameOf(IsPerson() + StarsIn(_movie))
     return actor, ReturnValue(i, j)
コード例 #3
0
 def interpret(self, match):
     actor = NameOf(IsPerson() + StarsIn(match.movie))
     print(actor)
     return actor, "enum"
コード例 #4
0
 def interpret(self, match):
     tv_show, i, j = match.tvshow
     actor = IsPerson() + StarsIn(tv_show)
     name = LabelOf(actor)
     return name, ReturnValue(i, j)