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

Class Label

Tools/cases_generator/analyzer.py:245–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243
244
245class Label:
246
247 def __init__(self, name: str, spilled: bool, body: BlockStmt, properties: Properties):
248 self.name = name
249 self.spilled = spilled
250 self.body = body
251 self.properties = properties
252
253 size:int = 0
254 local_stores: list[lexer.Token] = []
255 instruction_size = None
256
257 def __str__(self) -> str:
258 return f"label({self.name})"
259
260
261Part = Uop | Skip | Flush

Callers 1

add_labelFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…