Chromium Code Reviews
DescriptionDevTools: [SASS] parse SCSS rules and their selectors.
This patch teaches SCSS parser to extract rules array.
For example, given the following SCSS:
$color: red;
.message {
border: 1px solid black;
.title {
color: #333;
}
}
The SCSS parser will extract three rules, with all
top-level declarations contained by the first rule
without any selectors.
{
$color: red;
}
.message {
border: 1px solid black;
}
.title {
color: #333;
}
BUG=608097
R=pfeldman
Committed: https://crrev.com/a14461fedcb35dda8aed002ffa971479d15892b9
Cr-Commit-Position: refs/heads/master@{#391383}
Patch Set 1 #
Total comments: 4
Patch Set 2 : address comments #Messages
Total messages: 15 (7 generated)
|