* @param {Array } stopNodeExpressions - Array of compiled Expression objects * @param {Matcher} matcher - Current path matcher
()
| 652 | * @param {Matcher} matcher - Current path matcher |
| 653 | */ |
| 654 | function isItStopNode() { |
| 655 | if (this.stopNodeExpressionsSet.size === 0) return false; |
| 656 | |
| 657 | return this.matcher.matchesAny(this.stopNodeExpressionsSet); |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * Returns the tag Expression and where it is ending handling single-double quotes situation |
nothing calls this directly
no test coverage detected