File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -520,7 +520,7 @@ function value(&$value) {
520
520
521
521
// unquote string
522
522
if ($ this ->literal ("~ " ) && $ this ->string ($ value , $ d )) {
523
- $ value = array ("keyword " , $ value );
523
+ $ value = array ("escape " , $ value );
524
524
return true;
525
525
} else {
526
526
$ this ->seek ($ s );
@@ -1379,6 +1379,7 @@ function compileValue($value) {
1379
1379
case 'number ' :
1380
1380
// [1] - the number
1381
1381
return $ value [1 ];
1382
+ case 'escape ' :
1382
1383
case 'string ' :
1383
1384
// [1] - contents of string (includes quotes)
1384
1385
Original file line number Diff line number Diff line change 12
12
line-height : ~ " eating rice" ;
13
13
line-height : ~ " string cheese" ;
14
14
line-height : a b c ~ " string me" d e f;
15
+ line-height : ~ " string @{hello} " ;
15
16
}
16
17
17
18
.class {
Original file line number Diff line number Diff line change 9
9
line-height : eating rice;
10
10
line-height : string cheese;
11
11
line-height : a b c string me d e f;
12
+ line-height : string world;
12
13
}
13
14
.class { filter : progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png'); }
You can’t perform that action at this time.
0 commit comments