You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
getMissingUserDefinedArguments work wrong in the latest version
Issue content:
After I update to the latest version of mXparser, I got problem when use getMissingUserDefinedArguments fucntion.
Example: my expression in string: "300+Caster_Attack*3"
var expression = new Expression("300+Caster_Attack*3");
expression.getMissingUserDefinedArguments();
At v4.4.2 : that function will be return a string array [0] : "Caster_Attack"
At v.5.0.6 : that function will be return a string array [0]: "ast" [1]: "r_Attack"