anyscript_compiler/alias/
mod.rs

1#[cfg(target_pointer_width = "32")]
2#[allow(unused)]
3pub type IntAlias = i32;
4#[cfg(target_pointer_width = "64")]
5#[allow(unused)]
6pub type IntAlias = i64;
7#[cfg(target_pointer_width = "32")]
8#[allow(unused)]
9pub type FloatAlias = f32;
10#[cfg(target_pointer_width = "64")]
11#[allow(unused)]
12pub type FloatAlias = f64;
13#[cfg(target_pointer_width = "32")]
14#[allow(unused)]
15pub type UIntAlias = u32;
16#[cfg(target_pointer_width = "64")]
17#[allow(unused)]
18pub type UIntAlias = u64;