@graffiticode/basis 1.5.16 → 1.5.17
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/package.json +1 -1
- package/src/compiler.js +1 -1
package/package.json
CHANGED
package/src/compiler.js
CHANGED
|
@@ -503,7 +503,7 @@ export class Transformer extends Visitor {
|
|
|
503
503
|
}
|
|
504
504
|
const patternNid = this.internPattern(pattern);
|
|
505
505
|
if (patternNid === this.internPattern(node) ||
|
|
506
|
-
patternNid === this.internPattern(newNode('
|
|
506
|
+
patternNid === this.internPattern(newNode('_', []))) {
|
|
507
507
|
return true;
|
|
508
508
|
}
|
|
509
509
|
if (pattern.tag === node.tag) {
|