Skip to content
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

Merged
merged 6 commits into from
Jan 2, 2017
Merged

Bracketed lists #2279

merged 6 commits into from
Jan 2, 2017

Conversation

xzyfer
Copy link
Contributor

@xzyfer xzyfer commented Dec 31, 2016

#2134 rebased on master.

Closes #2134
Fixes #2073
Spec sass/sass-spec#1045

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.
@xzyfer xzyfer mentioned this pull request Jan 1, 2017
@xzyfer xzyfer merged commit 46f5244 into sass:master Jan 2, 2017
@xzyfer xzyfer deleted the bracked-lists branch January 2, 2017 00:59
xzyfer added a commit to xzyfer/libsass that referenced this pull request Jan 2, 2017
Lists gained a delimiter attribute in sass#2279. The primary semantic
difference is that the delimiter changes list equality (sass#2281) which
can matter in custom functions.

This is a breaking change so I'd like to get it into the first 3.5
beta.
Copy link
Contributor

@mgreter mgreter left a 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 {
Copy link
Contributor

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)
Copy link
Contributor

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).

xzyfer added a commit to xzyfer/libsass that referenced this pull request Jan 5, 2017
Lists gained a delimiter attribute in sass#2279. The primary semantic
difference is that the delimiter changes list equality (sass#2281) which
can matter in custom functions.

This is a breaking change so I'd like to get it into the first 3.5
beta.
xzyfer added a commit to xzyfer/libsass that referenced this pull request Jan 5, 2017
Lists gained an `is_bracketed` attribute in sass#2279. The primary
semantic difference is that the`is_bracketed` changes list equality
(sass#2281) which can matter in custom functions.

This is a breaking change so I'd like to get it into the first 3.5
beta.
xzyfer added a commit that referenced this pull request Mar 5, 2017
This reverts commit 46f5244, reversing
changes made to f5c8d35.
mgreter pushed a commit that referenced this pull request Apr 8, 2017
This reverts commit 46f5244, reversing
changes made to f5c8d35.
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants