MCPcopy Create free account
hub / github.com/URLab-Sim/UnrealRoboticsLab / get_access

Function get_access

Scripts/parse_headers.py:513–520  ·  view source on GitHub ↗
(pos: int)

Source from the content-addressed store, hash-verified

511 access_regions.append((match.end(), match.group(1)))
512
513 def get_access(pos: int) -> str:
514 acc = access_regions[0][1]
515 for r_pos, r_acc in access_regions:
516 if pos >= r_pos:
517 acc = r_acc
518 else:
519 break
520 return acc
521
522 # ── Properties ───────────────────────────────────────────────────────────
523 # Pattern: optional doc, optional UPROPERTY(...), then type, then name;

Callers 1

_parse_bodyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected