builtup4/bu4/evaluation/sync.py
2021-07-24 15:10:11 +03:00

14 lines
357 B
Python

# Copyright (c) PARRRATE T&V 2021. All rights reserved.
from bu4.evaluation.constructs.evaluable import Evaluable
from bu4.evaluation.constructs.evalue import EValue
__all__ = ('sync',)
def sync(evaluable: Evaluable) -> EValue:
while True:
if isinstance(evaluable, EValue):
return evaluable
evaluable = evaluable.next()