示例#1
0
文件: parser.py 项目: timtadh/pyflwor
 def p_Entity2(self, t):
     'Entity : NAME LSQUARE Where RSQUARE'
     t[0] = (t[1], symbols.whereValue(t[3]))
示例#2
0
 def p_Entity2(self, t):
     'Entity : NAME LSQUARE Where RSQUARE'
     t[0] = (t[1], symbols.whereValue(t[3]))
示例#3
0
文件: parser.py 项目: timtadh/pyflwor
 def p_Entity1(self, t):
     'Entity : NAME'
     t[0] = (t[1], symbols.whereValue(lambda objs: True))
示例#4
0
 def p_Entity1(self, t):
     'Entity : NAME'
     t[0] = (t[1], symbols.whereValue(lambda objs: True))