mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
2301ecb65f
Might as well give some subset of our users a speed-up while we wait for dart-lang/sdk#28617.
22 lines
468 B
SCSS
22 lines
468 B
SCSS
// This file is used to train application snapshots. It exercises the Sass value
|
|
// types and the most common AST types so that they're already JIT-compiled when
|
|
// the snapshot begins running.
|
|
|
|
/* loud comment */
|
|
|
|
@media screen {
|
|
type {
|
|
&.class#id[attr]%placeholder:pseudo {
|
|
number: 1.5px;
|
|
color: #abc;
|
|
list: 1 2 3;
|
|
map: map-get((1: 2), 1);
|
|
string: foo;
|
|
boolean: true;
|
|
null: null;
|
|
}
|
|
}
|
|
}
|
|
|
|
* {@extend %placeholder}
|