clarity-pattern-parser 10.1.5 → 10.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/patterns/Reference.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -853,7 +853,7 @@ class Reference {
|
|
|
853
853
|
}
|
|
854
854
|
const root = this._getRoot();
|
|
855
855
|
return findPattern(root, (pattern) => {
|
|
856
|
-
return pattern.name === this._name && pattern.type !== "reference"
|
|
856
|
+
return pattern.name === this._name && pattern.type !== "reference";
|
|
857
857
|
});
|
|
858
858
|
}
|
|
859
859
|
_getRoot() {
|