Home | History | Annotate | Download | only in cindex

Lines Matching refs:argument_types

160     """Ensure that Type.argument_types() works as expected."""
165 args = f.type.argument_types()
189 args = f.type.argument_types()
196 """Ensure that negative indexes on argument_types Raises an IndexError."""
199 args = f.type.argument_types()
205 """Ensure that indexes beyond the length of Type.argument_types() raise."""
208 args = f.type.argument_types()
214 """Ensure that obtaining argument_types on a Type without them raises."""
219 i.type.argument_types()
402 a = foo.type.argument_types()[0]