Merge branch 'main' into COG-597-refactor-analytics
This commit is contained in:
commit
d1e9870972
1 changed files with 3 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ class Class(DataPoint):
|
||||||
description: str
|
description: str
|
||||||
constructor_parameters: List[Variable]
|
constructor_parameters: List[Variable]
|
||||||
extended_from_class: Optional["Class"] = None
|
extended_from_class: Optional["Class"] = None
|
||||||
has_methods: list["Function"]
|
has_methods: List["Function"]
|
||||||
|
|
||||||
_metadata = {
|
_metadata = {
|
||||||
"index_fields": ["name"]
|
"index_fields": ["name"]
|
||||||
|
|
@ -89,7 +89,8 @@ class SourceCodeGraph(DataPoint):
|
||||||
Operator,
|
Operator,
|
||||||
Expression,
|
Expression,
|
||||||
]]
|
]]
|
||||||
|
|
||||||
Class.model_rebuild()
|
Class.model_rebuild()
|
||||||
ClassInstance.model_rebuild()
|
ClassInstance.model_rebuild()
|
||||||
Expression.model_rebuild()
|
Expression.model_rebuild()
|
||||||
|
FunctionCall.model_rebuild()
|
||||||
|
SourceCodeGraph.model_rebuild()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue