From: Jay Freeman (saurik) Date: Wed, 16 Dec 2015 00:37:00 +0000 (-0800) Subject: The arguments variable needs to be declared Magic. X-Git-Tag: v0.9.590~205 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/b026d13670db68f6121f78ed09bccfc78c661df9?ds=sidebyside The arguments variable needs to be declared Magic. --- diff --git a/Replace.cpp b/Replace.cpp index c78f380..e95f5e1 100644 --- a/Replace.cpp +++ b/Replace.cpp @@ -533,6 +533,8 @@ void CYFunction::Replace(CYContext &context) { CYScope scope(!localize, context); + $I("arguments")->Replace(context, CYIdentifierMagic); + parameters_->Replace(context, code_); context.ReplaceAll(code_);