Skip to content

Commit 10490c9

Browse files
committed
Remove unused methods
1 parent 5e616ec commit 10490c9

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

lib/Parser.js

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1737,30 +1737,6 @@ class Parser extends Tapable {
17371737
};
17381738
}
17391739

1740-
parseStringArray(expression) {
1741-
if(expression.type !== "ArrayExpression") {
1742-
return [this.parseString(expression)];
1743-
}
1744-
1745-
const arr = [];
1746-
if(expression.elements)
1747-
for(const expr of expression.elements)
1748-
arr.push(this.parseString(expr));
1749-
return arr;
1750-
}
1751-
1752-
parseCalculatedStringArray(expression) {
1753-
if(expression.type !== "ArrayExpression") {
1754-
return [this.parseCalculatedString(expression)];
1755-
}
1756-
1757-
const arr = [];
1758-
if(expression.elements)
1759-
for(const expr of expression.elements)
1760-
arr.push(this.parseCalculatedString(expr));
1761-
return arr;
1762-
}
1763-
17641740
parse(source, initialState) {
17651741
let ast;
17661742
let comments = [];

0 commit comments

Comments
 (0)