Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot join list with arglist #1269

Closed
davidkpiano opened this issue Jun 11, 2015 · 0 comments
Closed

Cannot join list with arglist #1269

davidkpiano opened this issue Jun 11, 2015 · 0 comments

Comments

@davidkpiano
Copy link

Test:

@function push($list, $items...) {
  @return join($list, $items, $separator: auto);
}

.test {
  $list: push(1 2 3, 4, 5);
  list: inspect($list);
  value: nth($list, 4);
}

Expected: (works in Ruby Sass)

.test {
  list: 1 2 3 4 5;
  value: 4;
}

Actual: (crashes/compiles forever in LibSass 3.2.4)

Might be related to #1257 and #1171

@mgreter mgreter self-assigned this Jun 12, 2015
@mgreter mgreter added this to the 3.3 milestone Jun 12, 2015
mgreter added a commit to mgreter/libsass that referenced this issue Jun 12, 2015
@ghost ghost mentioned this issue Jun 18, 2015
mgreter added a commit to mgreter/libsass that referenced this issue Jun 23, 2015
mgreter added a commit to mgreter/libsass that referenced this issue Jun 30, 2015
mgreter added a commit to mgreter/libsass that referenced this issue Jun 30, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
mgreter added a commit to mgreter/libsass that referenced this issue Jun 30, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
xzyfer added a commit to xzyfer/sass-spec that referenced this issue Jul 8, 2015
xzyfer added a commit to xzyfer/libsass that referenced this issue Jul 8, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
xzyfer pushed a commit to xzyfer/libsass that referenced this issue Jul 8, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
xzyfer pushed a commit to xzyfer/libsass that referenced this issue Jul 8, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
xzyfer pushed a commit to xzyfer/libsass that referenced this issue Jul 8, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
xzyfer pushed a commit to xzyfer/libsass that referenced this issue Jul 8, 2015
Fix segfault caused by static cast and wrong type
Fixes sass#1269
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants