We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e0106 commit e859a95Copy full SHA for e859a95
src/stdlib/stdlib.mc
@@ -13,7 +13,7 @@ let parseMCoreLibs : String -> Map String String = lam str.
13
match str with "" then mapEmpty cmpString else
14
let processBinding = lam acc. lam str.
15
match strSplit "=" str with [lib, path] ++ paths
16
- then mapInsert lib (strJoin "=" (cons path paths)) acc
+ then mapInsertWith (lam prev. lam. prev) lib (strJoin "=" (cons path paths)) acc
17
else
18
warnSingle [] (join
19
[ "Invalid element of MCORE_LIBS: \""
0 commit comments