Tags the current CQ object for later reference. :param name: the name to tag this object with :returns: self, a CQ object with tag applied
(self: T, name: str)
| 213 | self._tag = None |
| 214 | |
| 215 | def tag(self: T, name: str) -> T: |
| 216 | """ |
| 217 | Tags the current CQ object for later reference. |
| 218 | |
| 219 | :param name: the name to tag this object with |
| 220 | :returns: self, a CQ object with tag applied |
| 221 | """ |
| 222 | self._tag = name |
| 223 | self.ctx.tags[name] = self |
| 224 | |
| 225 | return self |
| 226 | |
| 227 | def _collectProperty(self, propName: str) -> List[CQObject]: |
| 228 | """ |
no outgoing calls