Merge pull request #13450 from ethereum/add_yul_exception_to_compiler_errors

added yul exception to compiler error types
This commit is contained in:
Mathias L. Baumann 2022-08-30 00:27:25 +02:00 committed by GitHub
commit 7fdd494da7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -614,8 +614,9 @@ Error Types
10. ``Exception``: Unknown failure during compilation - this should be reported as an issue. 10. ``Exception``: Unknown failure during compilation - this should be reported as an issue.
11. ``CompilerError``: Invalid use of the compiler stack - this should be reported as an issue. 11. ``CompilerError``: Invalid use of the compiler stack - this should be reported as an issue.
12. ``FatalError``: Fatal error not processed correctly - this should be reported as an issue. 12. ``FatalError``: Fatal error not processed correctly - this should be reported as an issue.
13. ``Warning``: A warning, which didn't stop the compilation, but should be addressed if possible. 13. ``YulException``: Error during Yul Code generation - this should be reported as an issue.
14. ``Info``: Information that the compiler thinks the user might find useful, but is not dangerous and does not necessarily need to be addressed. 14. ``Warning``: A warning, which didn't stop the compilation, but should be addressed if possible.
15. ``Info``: Information that the compiler thinks the user might find useful, but is not dangerous and does not necessarily need to be addressed.
.. _compiler-tools: .. _compiler-tools: