From acec274ce2ee391cba02227a995ae1471ecdd1e9 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Mon, 7 Aug 2023 17:38:52 +0800 Subject: [PATCH] exclude raw call --- vyper/semantics/analysis/annotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vyper/semantics/analysis/annotation.py b/vyper/semantics/analysis/annotation.py index a3cd50ada0..02fc0ffae4 100644 --- a/vyper/semantics/analysis/annotation.py +++ b/vyper/semantics/analysis/annotation.py @@ -184,8 +184,8 @@ def visit_Call(self, node, type_): for arg, arg_type in zip(node.args, call_type.arg_types): self.visit(arg, arg_type) else: + # note that mutability for`raw_call` is handled in its `build_IR` function mutable_builtins = ( - "raw_call", "create_minimal_proxy_to", "create_copy_of", "create_from_blueprint",