Commit c933c208 authored by gsamain's avatar gsamain Committed by Xavier Thompson

Lock analysis forwarded to argument in temp coercion node

parent d23f3d76
......@@ -13841,6 +13841,12 @@ class CoerceToTempNode(CoercionNode):
# The arg is always already analysed
return self
def ensure_rhs_locked(self, env, is_dereferenced = False):
self.arg.ensure_rhs_locked(env, is_dereferenced)
def ensure_lhs_locked(self, env, is_dereferenced = False):
self.arg.ensure_lhs_locked(env, is_dereferenced)
def coerce_to_boolean(self, env):
self.arg = self.arg.coerce_to_boolean(env)
if self.arg.is_simple():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment