add test for multiline comments between function name and args
This commit is contained in:
parent
c44f20d377
commit
b03561bc37
@ -328,3 +328,14 @@ test!(
|
|||||||
}",
|
}",
|
||||||
"a {\n color: nul;\n}\n"
|
"a {\n color: nul;\n}\n"
|
||||||
);
|
);
|
||||||
|
test!(
|
||||||
|
allows_multiline_comment_between_args,
|
||||||
|
"@function foo /**/ () /**/ {
|
||||||
|
@return red;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: foo();
|
||||||
|
}",
|
||||||
|
"a {\n color: red;\n}\n"
|
||||||
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user