// Copyright (C) 2019-2020 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // The Leo library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . use crate::{Circuit, DeprecatedError, Function, FunctionInput, Identifier, ImportStatement, TestFunction}; use leo_grammar::{ annotations::{Annotation, AnnotationArguments, AnnotationName}, definitions::{AnnotatedDefinition, Definition}, }; use std::convert::TryFrom; use indexmap::IndexMap; pub fn load_annotation( annotated_definition: AnnotatedDefinition, _imports: &mut Vec, _circuits: &mut IndexMap, _functions: &mut IndexMap, tests: &mut IndexMap, _expected: &mut Vec, ) -> Result<(), DeprecatedError> { let ast_annotation = annotated_definition.annotation; let ast_definition = *annotated_definition.definition; match ast_definition { Definition::Import(_) => { unimplemented!("annotated imports are not supported yet"); } Definition::Circuit(_) => { unimplemented!("annotated circuits are not supported yet"); } Definition::Function(function) => match ast_annotation.name { // If it's deprecated for more than one type of syntax, // we could just call it before the match on ast_definition. AnnotationName::Context(_) => Err(DeprecatedError::try_from(ast_annotation.name).unwrap()), AnnotationName::Test(_) => { let ident = Identifier::from(function.identifier.clone()); _functions.remove(&ident); let test_function = leo_grammar::functions::TestFunction::from(function); let test = TestFunction::from(test_function); tests.insert(ident, test.clone()); load_annotated_test(test, ast_annotation, tests); Ok(()) } }, Definition::Deprecated(_) => Ok(()), Definition::Annotated(_) => { unimplemented!("nested annotations are not supported yet"); } } } pub fn load_annotated_test(test: TestFunction, annotation: Annotation, tests: &mut IndexMap) { let name = annotation.name; let ast_arguments = annotation.arguments; match name { AnnotationName::Test(_) if ast_arguments.is_some() => { load_annotated_test_context(test, ast_arguments.unwrap(), tests) } _ => (), } } pub fn load_annotated_test_context( mut test: TestFunction, ast_arguments: AnnotationArguments, tests: &mut IndexMap, ) { let arguments = ast_arguments.arguments; if arguments.len() != 1 { panic!("text context annotation must have one argument identifier") } let ast_input_file = arguments[0].to_owned(); let input_file = Identifier::from(ast_input_file); test.input_file = Some(input_file); tests.insert(test.function.identifier.clone(), test); }