We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ScriptEngine.Execute can throw many unexpected exceptions. Here are the types of exceptions it can throw and the code snippets used to trigger them:
new ScriptEngine().Execute("if(5 .toString(3)==0)(0)");
new ScriptEngine().Execute("new Date(0,0)");
new ScriptEngine().Execute("delete[].(0)");
new ScriptEngine().Execute("({[0](");
new ScriptEngine().Execute("function a(){for(a=0;a<0;0++)0}");
Found via SharpFuzz.
The text was updated successfully, but these errors were encountered:
Thanks for doing this, this is really helpful. I've checked in a few fixes already, with more to come.
Sorry, something went wrong.
These should all now be fixed.
No branches or pull requests
ScriptEngine.Execute can throw many unexpected exceptions. Here are the types of exceptions it can throw and the code snippets used to trigger them:
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidCastException
NullReferenceException
Found via SharpFuzz.
The text was updated successfully, but these errors were encountered: