Enum circomspect_parser::ParseResult
source · pub enum ParseResult {
Program(Box<ProgramArchive>, ReportCollection),
Library(Box<TemplateLibrary>, ReportCollection),
}Expand description
A result from the Circom parser.
Variants§
Program(Box<ProgramArchive>, ReportCollection)
The program was successfully parsed without issues.
Library(Box<TemplateLibrary>, ReportCollection)
The parser failed to parse a complete program.