Skip to content

Commit 9dac9e8

Browse files
committed
actually return things
1 parent cc953e9 commit 9dac9e8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

parse-css.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,6 +1334,7 @@ class AtRule extends CSSParserRule {
13341334
s += this.rules.map(x=>x.toSource(indent+1)).join("\n") + "\n";
13351335
}
13361336
s += printIndent(indent) + "}";
1337+
return s;
13371338
}
13381339
}
13391340

@@ -1368,6 +1369,7 @@ class QualifiedRule extends CSSParserRule {
13681369
s += this.rules.map(x=>x.toSource(indent+1)).join("\n") + "\n";
13691370
}
13701371
s += printIndent(indent) + "}";
1372+
return s;
13711373
}
13721374
}
13731375

@@ -1394,6 +1396,7 @@ class Declaration extends CSSParserRule {
13941396
s += " !important";
13951397
}
13961398
s += ";";
1399+
return s;
13971400
}
13981401
}
13991402

0 commit comments

Comments
 (0)