Home
last modified time | relevance | path

Searched refs:HyperParser (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
H A Dtest_hyperparser.py3 from idlelib.hyperparser import HyperParser namespace
62 return HyperParser(self.editwin, index)
205 result = HyperParser._eat_identifier(candidate, 0, len(candidate))
246 self.assertEqual(HyperParser._eat_identifier('+ var', 0, 5), len('var'))
247 self.assertEqual(HyperParser._eat_identifier('+var', 0, 4), len('var'))
248 self.assertEqual(HyperParser._eat_identifier('.var', 0, 4), len('var'))
261 eat_id = HyperParser._eat_identifier
/third_party/python/Lib/idlelib/
H A Dparenmatch.py7 from idlelib.hyperparser import HyperParser namespace
78 indices = (HyperParser(self.editwin, "insert")
89 hp = HyperParser(self.editwin, "insert-1c")
H A Dcalltip.py15 from idlelib.hyperparser import HyperParser namespace
62 hp = HyperParser(self.editwin, "insert")
H A Dautocomplete.py22 from idlelib.hyperparser import HyperParser namespace
114 hp = HyperParser(self.editwin, "insert")
H A Dhyperparser.py3 HyperParser uses PyParser. PyParser mostly gives information on the
4 proper indentation of code. HyperParser gives additional information on
25 class HyperParser: class
103 """Is the index given to the HyperParser in a string?"""
111 """Is the index given to the HyperParser in normal code?"""
119 If the index given to the HyperParser is surrounded by a

Completed in 3 milliseconds