18 lines
547 B
Python
18 lines
547 B
Python
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
|
|
|
|
from bu4.evaluation.av.aftervalue import AfterValue
|
|
from bu4.evaluation.targets.avtarget import AVTarget
|
|
from bu4.evaluation.constructs.evaluable import Evaluable
|
|
from bu4.evaluation.constructs.evalue import EValue
|
|
|
|
__all__ = ('AVContainer',)
|
|
|
|
|
|
class AVContainer(AVTarget):
|
|
def __init__(self, evaluable: Evaluable):
|
|
self.after_value = AfterValue(evaluable, self)
|
|
|
|
def given(self, value: EValue) -> Evaluable:
|
|
self.after_value.evaluable = value
|
|
return value
|