We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 561bf62 commit 96c8270Copy full SHA for 96c8270
1 file changed
cldk/models/java/models.py
@@ -102,11 +102,11 @@ class JCallSite(BaseModel):
102
argument_types: List[str]
103
return_type: str = ""
104
callee_signature: str = ""
105
- is_static_call: bool
106
- is_private: bool
107
- is_public: bool
108
- is_protected: bool
109
- is_unspecified: bool
+ is_static_call: bool | None = None
+ is_private: bool | None = None
+ is_public: bool | None = None
+ is_protected: bool | None = None
+ is_unspecified: bool | None = None
110
is_constructor_call: bool
111
start_line: int
112
start_column: int
0 commit comments