Thank you for wanting to contribute to rasn and its compiler. Currently, the main goal of the compiler development is to achieve full compliance with the specifications that define ASN.1.
If you don't already know how you may want to contribute to the compiler's development, check out the parses_modules test. The test runs the compiler against a collection of public ASN.1 modules and outputs a rudimentary log file (parse_test_results.txt) that is a good place to figure out where some work needs to be done.
A typical error might look like this in parse_text_result.txt:
The header deliminated by hyphens indicates the path to the module that caused the error when the compiler was trying to parse it. Below, the ParserError lets us know that the compiler was having trouble digesting a particular segment of the ASN.1 module: Something around the occurrence of scf-scfContract CONTRACT ::= {...
Any further investigation from this point on can only be of help. Already an issue with a minimal reproduction of the error is a great contribution.
Hello! 👋
Thank you for wanting to contribute to
rasn
and its compiler. Currently, the main goal of the compiler development is to achieve full compliance with the specifications that define ASN.1.If you don't already know how you may want to contribute to the compiler's development, check out the
parses_modules
test. The test runs the compiler against a collection of public ASN.1 modules and outputs a rudimentary log file (parse_test_results.txt
) that is a good place to figure out where some work needs to be done.A typical error might look like this in
parse_text_result.txt
:The header deliminated by hyphens indicates the path to the module that caused the error when the compiler was trying to parse it. Below, the
ParserError
lets us know that the compiler was having trouble digesting a particular segment of the ASN.1 module: Something around the occurrence ofscf-scfContract CONTRACT ::= {
...Any further investigation from this point on can only be of help. Already an issue with a minimal reproduction of the error is a great contribution.