(
self, typ: Any, name: str, idlflags: list[str], default: Optional[Any]
)
| 113 | self.arguments: list[tuple[Any, str, list[str], Optional[Any]]] = [] |
| 114 | |
| 115 | def add_argument( |
| 116 | self, typ: Any, name: str, idlflags: list[str], default: Optional[Any] |
| 117 | ) -> None: |
| 118 | self.arguments.append((typ, name, idlflags, default)) |
| 119 | |
| 120 | |
| 121 | class DispProperty: |
no outgoing calls