예제 #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))