-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Bracketed lists #2279
Bracketed lists #2279
Conversation
e823613
to
59c9a91
Compare
This is the idea: in the same way the old parser looks for parenthesis delimiters, let's add another case for brackets delimiters. In case an open bracket is found, the parser will look for a list. There are three possible results of parsing a list: First, the parsed expression is not a list at all. libsass parser tends to avoid wrapping if lists are only one item lists. But bracketed lists prevent unwrapping so the item becomes the solely item for a new bracketed list. Example: singleton-item --> [ singleton-item ] Second, the list is indeed a list with some explicit delimiter. This case is similar to the previous one. Brackets prevent unwrapping so this time is the list as a whole which become the unique item of the bracketed list. Example: (item1, item2, ...) --> [ (item1, item2, ...) ] [item1, item2, ...] --> [ [item1, item2, ...] ] Third, the list is a list with no delimiters. So its items actually belong to the bracketed list. The parse will fix the delimiter of the list for them to be brackets. Example: Suppose | ... | stands for a list with no delimiters. |item1, item2, ...| --> [item1, item2, ...]
Functions operating on a copy of lists must copy the delimiter also.
First, instead of directly writting the left or right parenthesis characters, now functions are called for left or right delimiters and change in case of parenthesis or brackets. Second, in case of bracketed list, always add the brackets. Also add comma in case it is a one-item comma-separate list. Otherwise it would become a one-item space-separated list. Third, libsass prevent from emitting invisible items. Thus, an empty space / comma separated list won't be printed at all but bracketed list are never invisible, event the empty ones.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just wanted to leave a few comments as reference as I did not had time to look over this before. Not sure what github now does with this "review" after merge ...
@@ -35,6 +35,13 @@ enum Sass_Separator { | |||
SASS_HASH | |||
}; | |||
|
|||
// Tags for denoting Sass list delimiters | |||
enum Sass_List_Delimiter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not too excited about the wording "delimiter". I only use delimiter for stuff that goes between things and not around. Maybe that's just me? But I would have preferred something as Sass_List_Type
. IMO it is confusing to have a delimiter
and a separator
.
ADD_PROPERTY(bool, from_selector) | ||
public: | ||
List(ParserState pstate, | ||
size_t size = 0, enum Sass_Separator sep = SASS_SPACE, bool argl = false) | ||
size_t size = 0, enum Sass_Separator sep = SASS_SPACE, bool argl = false, | ||
enum Sass_List_Delimiter delimiter = SASS_NO_DELIMITER) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this changes the function prototype anyway, I would prefer to have the "official" arguments before the "libsass" specific ones (size, sep, del, argl).
#2134 rebased on master.
Closes #2134
Fixes #2073
Spec sass/sass-spec#1045