MCPcopy Index your code
hub / github.com/aws/aws-cli / _walk

Method _walk

awscli/utils.py:597–604  ·  view source on GitHub ↗
(self, shape, visitor, stack)

Source from the content-addressed store, hash-verified

595 return self._walk(shape, visitor, stack)
596
597 def _walk(self, shape, visitor, stack):
598 if shape.name in stack:
599 return
600 stack.append(shape.name)
601 getattr(self, f'_walk_{shape.type_name}', self._default_scalar_walk)(
602 shape, visitor, stack
603 )
604 stack.pop()
605
606 def _walk_structure(self, shape, visitor, stack):
607 self._do_shape_visit(shape, visitor)

Callers 4

walkMethod · 0.95
_walk_structureMethod · 0.95
_walk_listMethod · 0.95
_walk_mapMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected