Enum sway_core::CompileAstResult
source · [−]pub enum CompileAstResult {
Success {
parse_tree: Box<TypedParseTree>,
tree_type: TreeType,
warnings: Vec<CompileWarning>,
},
Failure {
warnings: Vec<CompileWarning>,
errors: Vec<CompileError>,
},
}