first import
This commit is contained in:
77
sites/all/libraries/lessphp/tests/inputs/arity.less
Normal file
77
sites/all/libraries/lessphp/tests/inputs/arity.less
Normal file
@@ -0,0 +1,77 @@
|
||||
|
||||
// simple arity
|
||||
|
||||
.hello(@a) {
|
||||
color: one;
|
||||
}
|
||||
|
||||
.hello(@a, @b) {
|
||||
color: two;
|
||||
}
|
||||
|
||||
.hello(@a, @b, @c) {
|
||||
color: three;
|
||||
}
|
||||
|
||||
|
||||
.world(@a, @b, @c) {
|
||||
color: three;
|
||||
}
|
||||
|
||||
.world(@a, @b) {
|
||||
color: two;
|
||||
}
|
||||
|
||||
.world(@a) {
|
||||
color: one;
|
||||
}
|
||||
|
||||
.one {
|
||||
.hello(1);
|
||||
.world(1);
|
||||
}
|
||||
|
||||
.two {
|
||||
.hello(1, 1);
|
||||
.world(1, 1);
|
||||
}
|
||||
|
||||
.three {
|
||||
.hello(1, 1, 1);
|
||||
.world(1, 1, 1);
|
||||
}
|
||||
|
||||
|
||||
// arity with default values
|
||||
|
||||
.foo(@a, @b: cool) {
|
||||
color: two;
|
||||
}
|
||||
|
||||
.foo(@a, @b: cool, @c: yeah) {
|
||||
color: three;
|
||||
}
|
||||
|
||||
|
||||
.baz(@a, @b, @c: yeah) {
|
||||
color: three;
|
||||
}
|
||||
|
||||
.baz(@a, @b: cool) {
|
||||
color: two;
|
||||
}
|
||||
|
||||
|
||||
.multi-foo {
|
||||
.foo(1);
|
||||
.foo(1, 1);
|
||||
.foo(1,1,1);
|
||||
}
|
||||
|
||||
.multi-baz {
|
||||
.baz(1);
|
||||
.baz(1, 1);
|
||||
.baz(1,1,1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user