Skip to content

Commit

Permalink
fix(nlcst-pattern-match): remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Nov 4, 2017
1 parent df0f00c commit af87c30
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/nlcst-pattern-match/src/nlcst-pattern-match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ export class PatternMatcher {
const indexOf = parent.children.indexOf(node);
const actualNode = parent.children[indexOf];
const placeholderNode = replaceHolder.value;
console.log(placeholderNode);
parent.children[indexOf] = Object.assign({}, placeholderNode, {
position: actualNode.position
});
Expand All @@ -145,7 +144,6 @@ export class PatternMatcher {
});

const section = AST.children[0].children[0];
console.log(JSON.stringify(section, null, 4));
return section.children as TagPatterns;
}
}

0 comments on commit af87c30

Please sign in to comment.