The example given by the sass map.set
documentation doesn't work, why is that?
@use "sass:map";
$font-weights: (
'regular': 400,
'medium': 500,
'bold': 700
);
map.set($font-weights, 'extra-bold', 900);
// ("regular": 400, "medium": 500, "bold": 700, "extra-bold": 900)
map.set($font-weights, 'bold', 900);
// ("regular": 400, "medium": 500, "bold": 900)
My sass
version is 1.32.5
.
The entire error message:
Syntax Error: SassError: expected "{".
╷
9 │ map.set($font-weights, 'extra-bold', 900);
│ ^
╵
src\assets\styles\variables.scss 9:42 @import
src\assets\styles\main.scss 4:9 root stylesheet
I expect the map to be set without throwing errors.
Problem 1 (If you are using
map.set
, please skip to problem 2)Actually, I was using
map-set
the whole time, I thoughtmap-set
is the same asmap.set
, turned out it's not.In Sass's doc Built-In Modules:
And
map.set
doesn't have a globalmap-set
likemap.merge
does (map-merge
).Problem 2
Also, I thought
map.set
would act like JavaScript'sMap.prototype.set()
, by which you set a map likemap.set(key, value)
without assigning it to a variable will work. In Sass, I had to do:Why
@debug
"didn't work" for meMostly I'm using Sass under the
vue-cli
environment. Sass's@debug
syntax "never had" any output visually, it turned out they're actually outputted, I just have to scroll up a bit: