MCPcopy Index your code
hub / github.com/python/cpython / visitSum

Method visitSum

Parser/asdl_c.py:211–215  ·  view source on GitHub ↗
(self, sum, name, depth)

Source from the content-addressed store, hash-verified

209 self.visit(type.value, type.name, depth)
210
211 def visitSum(self, sum, name, depth):
212 if is_simple(sum):
213 self.simple_sum(sum, name, depth)
214 else:
215 self.sum_with_constructors(sum, name, depth)
216
217 def simple_sum(self, sum, name, depth):
218 enum = []

Callers

nothing calls this directly

Calls 3

simple_sumMethod · 0.95
sum_with_constructorsMethod · 0.95
is_simpleFunction · 0.85

Tested by

no test coverage detected