working on conversion back to rust

This commit is contained in:
Andrew Segavac
2021-07-23 08:58:17 -06:00
parent 691009dd59
commit e41c2973a4
3 changed files with 203 additions and 38 deletions

View File

@@ -202,14 +202,6 @@ class Impl:
functions: List[Function]
@dataclass
class FunctionDeclartation:
name: str
arguments: List[VariableDeclaration]
return_type: TypeUsage
type: TypeUsage
TraitItem = Union[FunctionDeclaration, Function]