Revert "Use the root implementation for get_root_context"

Was not able to pass the tests with it.

This reverts commit ba6cd1e2d4.
This commit is contained in:
Dave Halter
2020-01-01 12:18:44 +01:00
parent 3ae0bb9805
commit 4837822e32

View File

@@ -27,7 +27,11 @@ class HelperValueMixin(object):
value = self
if value.parent_context is None:
return value.as_context()
return super(HelperValueMixin, self).get_root_context()
while True:
if value.parent_context is None:
return value
value = value.parent_context
@classmethod
@inference_state_as_method_param_cache()