MCPcopy Create free account
hub / github.com/IENT/YUView / CommentEntry

Class CommentEntry

tools/standardTextToCode/parseTables.py:132–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130 return f"{s} --> {self.coding}"
131
132class CommentEntry(ParsingItem):
133 def __init__(self, parent):
134 super().__init__(parent)
135 self.text = None
136 def fromText(self, text : str):
137 self.text = cleanComment(text)
138 def __str__(self):
139 s = ""
140 for _ in range(self.parent.depth):
141 s += " "
142 return f"{s}//{self.text}"
143
144class FunctionCall(ParsingItem):
145 def __init__(self, parent):

Callers 1

parseChildrenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected