mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-19 08:02:14 +03:00
46 lines
1.5 KiB
Rust
46 lines
1.5 KiB
Rust
// Copyright (C) 2019-2021 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 <https://www.gnu.org/licenses/>.
|
|
|
|
use leo_asg::*;
|
|
use leo_ast::Ast;
|
|
use leo_grammar::Grammar;
|
|
|
|
use std::path::Path;
|
|
|
|
mod fail;
|
|
mod pass;
|
|
|
|
const TESTING_FILEPATH: &str = "input.leo";
|
|
const TESTING_PROGRAM_NAME: &str = "test_program";
|
|
|
|
fn load_asg(program_string: &str) -> Result<Program, AsgConvertError> {
|
|
load_asg_imports(program_string, &mut NullImportResolver)
|
|
}
|
|
|
|
fn load_asg_imports<T: ImportResolver + 'static>(
|
|
program_string: &str,
|
|
imports: &mut T,
|
|
) -> Result<Program, AsgConvertError> {
|
|
let grammar = Grammar::new(Path::new(&TESTING_FILEPATH), program_string)?;
|
|
let ast = Ast::new(TESTING_PROGRAM_NAME, &grammar)?;
|
|
InternalProgram::new(&ast.as_repr(), imports)
|
|
}
|
|
|
|
fn mocked_resolver() -> MockedImportResolver {
|
|
let packages = indexmap::IndexMap::new();
|
|
MockedImportResolver { packages }
|
|
}
|