mirror of
https://github.com/fluencelabs/aquavm
synced 2025-07-05 17:41:33 +00:00
Rename Aqua to AIR, move AVM from FCE (#99)
This commit is contained in:
.circleci
.github/workflows
.gitignoreCHANGELOG.mdCargo.lockCargo.tomlConfig.tomlREADME.mdair-interpreter
air
.rustfmt.tomlCargo.toml
benches
src
air.rslib.rslog_targets.rs
air
build_targets
contexts
execution
air
boxed_value
errors.rsmod.rsutils
preparation
tests
avm
client
.gitattributes.gitignore.prettierrc.jsREADME.mdbuild_wasm.ps1build_wasm.shjest.config.jspackage-lock.jsonpackage.json
src
tsconfig.jsonserver
crates
air-interpreter-wasm
air-parser
benches
src
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();
|
||||
|
Reference in New Issue
Block a user