| 49 | |
| 50 | @dataclass |
| 51 | class ParsedFunction: |
| 52 | name: str = "" |
| 53 | return_type: str = "" |
| 54 | params: list = field(default_factory=list) |
| 55 | specifiers: dict = field(default_factory=dict) |
| 56 | macro: str = "" |
| 57 | brief: str = "" |
| 58 | description: str = "" |
| 59 | is_blueprint_callable: bool = False |
| 60 | is_blueprint_pure: bool = False |
| 61 | is_call_in_editor: bool = False |
| 62 | category: str = "" |
| 63 | access: str = "public" |
| 64 | |
| 65 | @dataclass |
| 66 | class ParsedProperty: |