File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1169,6 +1169,7 @@ function parseAComponentValue(s) {
11691169}
11701170
11711171function parseAListOfComponentValues ( s ) {
1172+ s = normalizeInput ( s ) ;
11721173 var vals = [ ] ;
11731174 while ( true ) {
11741175 var val = consumeAComponentValue ( s ) ;
@@ -1180,15 +1181,16 @@ function parseAListOfComponentValues(s) {
11801181}
11811182
11821183function parseACommaSeparatedListOfComponentValues ( s ) {
1184+ s = normalizeInput ( s ) ;
11831185 var listOfCVLs = [ ] ;
11841186 while ( true ) {
11851187 var vals = [ ] ;
11861188 while ( true ) {
11871189 var val = consumeAComponentValue ( s ) ;
11881190 if ( val instanceof EOFToken ) {
1189- return listOfCVLS ;
1191+ return listOfCVLs ;
11901192 } else if ( val instanceof CommaToken ) {
1191- listOfCVLS . push ( vals ) ;
1193+ listOfCVLs . push ( vals ) ;
11921194 break ;
11931195 } else {
11941196 vals . push ( val ) ;
You can’t perform that action at this time.
0 commit comments