Skip to content

Commit 1c5ab96

Browse files
authored
fix: add Float16Array to es2025 features (#38)
1 parent 86824c9 commit 1c5ab96

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@ pub static GLOBALS: Map<&'static str, Map<&'static str, bool>> = phf_map! {
370370
"BigUint64Array" => false,
371371
"DataView" => false,
372372
"FinalizationRegistry" => false,
373+
"Float16Array" => false,
373374
"Float32Array" => false,
374375
"Float64Array" => false,
375376
"Int16Array" => false,

xtask/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ lazy_static! {
6666
]);
6767
};
6868
static ref NEW_GLOBALS_2025: FxHashMap<String, bool> = {
69-
return FxHashMap::from_iter([(String::from("Iterator"), false)]);
69+
return FxHashMap::from_iter([
70+
(String::from("Float16Array"), false),
71+
(String::from("Iterator"), false),
72+
]);
7073
};
7174
}
7275

0 commit comments

Comments
 (0)