Skip to content

Commit d62dfe3

Browse files
authored
Triage specs for Dart Sass. (#988)
1 parent 2ca5c83 commit d62dfe3

File tree

12 files changed

+27
-25
lines changed

12 files changed

+27
-25
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.b .c, .b .d > .e, .a, .d > .e {
2+
top: 0;
3+
}

spec/libsass-closed-issues/issue_1091/options.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

spec/libsass/var-args/error

Lines changed: 0 additions & 6 deletions
This file was deleted.

spec/libsass/var-args/options.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

spec/sass/var-args/error/error

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
WARNING: Mixin bar takes 3 arguments but 4 were passed.
2+
on line 8 of /sass/spec/sass/var-args/error/input.scss
3+
This will be an error in future versions of Sass.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Error: Only 3 arguments allowed, but 4 were passed.
2+
@include bar(a, c d e...);
3+
^^^^^^^^^^^^^^^^^^^^^^^^^
4+
spec/sass/var-args/error/input.scss 8:3 bar()
5+
spec/sass/var-args/error/input.scss 8:3 root stylesheet

spec/sass/var-args/error/expected_output-dart-sass.css

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
div {
2+
x: a;
3+
y: c;
4+
z: d;
5+
}

spec/sass/var-args/error/input.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@mixin bar($x, $y, $z) {
2+
x: $x;
3+
y: $y;
4+
z: $z;
5+
}
6+
7+
div {
8+
@include bar(a, c d e...);
9+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
65

0 commit comments

Comments
 (0)