让我解释一下“常数”的含义,因为我不确定正确的术语。
.state(pressed) {
// Do something inside my mixin with "pressed"
}
在上面的示例中,“按下”是常量-它不是变量,不能更改。
问题是我可以在mixin中引用指向此关键字的指针吗?
.state(pressed) {
.call-another-mixin(// use "pressed" without explicitly typing it //);
}