1
0
mirror of https://github.com/fluencelabs/aquavm synced 2025-07-05 17:41:33 +00:00

Rename Aqua to AIR, move AVM from FCE ()

This commit is contained in:
Mike Voronov
2021-05-10 14:25:34 +03:00
committed by GitHub
parent 0ddc44bf52
commit 2ac0304d3e
123 changed files with 11960 additions and 5487 deletions
.circleci
.github/workflows
.gitignoreCHANGELOG.mdCargo.lockCargo.tomlConfig.tomlREADME.md
air-interpreter
air
avm
crates
air-interpreter-wasm
air-parser
interpreter-interface
test-module
test-utils
npm

@ -37,7 +37,7 @@ thread_local!(static PARSER: AIRParser = AIRParser::new());
/// Parse AIR `source_code` to `Box<Instruction>`
pub fn parse(air_script: &str) -> Result<Box<Instruction<'_>>, String> {
let mut files = SimpleFiles::new();
let file_id = files.add("script.aqua", air_script);
let file_id = files.add("script.air", air_script);
PARSER.with(|parser| {
let mut errors = Vec::new();