1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // 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);
- }
|