* Whether any ancestor (self inclusive) was pure — for ancestor-inheritance and `&`-resolution. * @returns {boolean} true if any ancestor provided a local
()
| 1090 | * @returns {boolean} true if any ancestor provided a local |
| 1091 | */ |
| 1092 | ancestorHadLocal() { |
| 1093 | const top = this.stack[this.stack.length - 1]; |
| 1094 | return top ? top.ancestorHadLocal : false; |
| 1095 | }, |
| 1096 | /** |
| 1097 | * Record that the current comma-separated selector carries a local class / id (no-op when pure-mode is off). |
| 1098 | */ |
no outgoing calls
no test coverage detected