alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
cargo fmt
author
yoshi~
committer
Louis Pilfold
date
1 year ago
(Jul 6, 2025, 1:47 PM +0100)
commit
5416b82e
5416b82e1d4975e3454682c219ac2982c91c998f
parent
49c8641b
49c8641b16beeabd525449d5c0e2028acae5f8f9
+4
-1
1 changed file
Expand all
Collapse all
Unified
Split
compiler-core
src
io.rs
+4
-1
compiler-core/src/io.rs
View file
Reviewed
···
430
430
431
431
#[inline]
432
432
pub fn is_native_file_extension(extension: &str) -> bool {
433
433
-
matches!(extension, "erl" | "hrl" | "ex" | "js" | "mjs" | "cjs" | "ts")
433
433
+
matches!(
434
434
+
extension,
435
435
+
"erl" | "hrl" | "ex" | "js" | "mjs" | "cjs" | "ts"
436
436
+
)
434
437
}
435
438
436
439
pub fn ordered_map<S, K, V>(value: &HashMap<K, V>, serializer: S) -> Result<S::Ok, S::Error>