コード例 #1
0
ファイル: implementation.py プロジェクト: Tradesend/kooc
def define_dtor(self: Implementation, declaration, current_block):
    declaration.set(nodes.DestructorImplementation(declaration))
    current_block.ref.body.append(declaration)
    return True
コード例 #2
0
ファイル: implementation.py プロジェクト: Tradesend/kooc
def define_method(self: Implementation, declaration, current_block):
    declaration.set(nodes.MethodImplementation(declaration))
    current_block.ref.body.append(declaration)
    return True