Merge branch 'trunk' into str_trim_left

This commit is contained in:
Folkert de Vries 2021-11-10 14:06:01 +01:00 committed by GitHub
commit eb1b6d97bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 169 additions and 69 deletions

View file

@ -1,10 +1,15 @@
use std::ops::Index;
pub const OBJ_PATH: &str = env!(
pub const BUILTINS_HOST_OBJ_PATH: &str = env!(
"BUILTINS_HOST_O",
"Env var BUILTINS_HOST_O not found. Is there a problem with the build script?"
);
pub const BUILTINS_WASM32_OBJ_PATH: &str = env!(
"BUILTINS_WASM32_O",
"Env var BUILTINS_WASM32_O not found. Is there a problem with the build script?"
);
#[derive(Debug, Default)]
pub struct IntrinsicName {
pub options: [&'static str; 14],