File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -3503,7 +3503,7 @@ self.parserlib = (() => {
3503
3503
do {
3504
3504
this . _ws ( ) ;
3505
3505
if ( ( t = stream . get ( true ) ) . type === Tokens . IDENT ) {
3506
- ids . push ( t . value ) ;
3506
+ ids . push ( this . _layerName ( t ) ) ;
3507
3507
this . _ws ( ) ;
3508
3508
t = stream . get ( true ) ;
3509
3509
}
@@ -3521,6 +3521,16 @@ self.parserlib = (() => {
3521
3521
this . _ws ( ) ;
3522
3522
}
3523
3523
3524
+ _layerName ( start ) {
3525
+ let res = '' ;
3526
+ const stream = this . _tokenStream ;
3527
+ for ( let t ; ( t = start || stream . match ( Tokens . IDENT ) ) ; ) {
3528
+ res += t . value + ( stream . match ( Tokens . DOT ) ? '.' : '' ) ;
3529
+ start = false ;
3530
+ }
3531
+ return res ;
3532
+ }
3533
+
3524
3534
_stylesheet ( ) {
3525
3535
const stream = this . _tokenStream ;
3526
3536
this . fire ( 'startstylesheet' ) ;
@@ -3590,7 +3600,7 @@ self.parserlib = (() => {
3590
3600
this . _ws ( ) ;
3591
3601
t = stream . get ( true ) ;
3592
3602
if ( / ^ l a y e r ( \( ) ? $ / i. test ( t . value ) ) {
3593
- layer = RegExp . $1 ? stream . mustMatch ( Tokens . IDENT ) : '' ;
3603
+ layer = RegExp . $1 ? this . _layerName ( ) : '' ;
3594
3604
if ( layer ) stream . mustMatch ( Tokens . RPAREN ) ;
3595
3605
this . _ws ( ) ;
3596
3606
t = stream . get ( true ) ;
You can’t perform that action at this time.
0 commit comments