File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff 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 = [ ] ;
You can’t perform that action at this time.
0 commit comments