Home | History | Annotate | Download | only in ply

Lines Matching refs:pdict

1217     def bind(self,pdict):
1219 self.callable = pdict[self.func]
1240 def bind(self,pdict):
1242 self.callable = pdict[self.func]
1869 # Bind all production function names to callable objects in pdict
1870 def bind_callables(self,pdict):
1872 p.bind(pdict)
2763 def __init__(self,pdict,log=None):
2764 self.pdict = pdict
2856 self.start = self.pdict.get('start')
2866 self.error_func = self.pdict.get('p_error')
2890 tokens = self.pdict.get("tokens",None)
2924 self.prec = self.pdict.get("precedence",None)
2960 for name, item in self.pdict.items():
2983 func = self.pdict[name]
3013 for n,v in self.pdict.items():
3053 pdict = dict(_items)
3055 pdict = get_caller_module_dict(2)
3058 pinfo = ParserReflect(pdict,log=errorlog)
3076 lr.bind_callables(pinfo.pdict)
3272 lr.bind_callables(pinfo.pdict)