-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcss_parser.go
1108 lines (952 loc) · 29.6 KB
/
css_parser.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package css_parser
import (
"fmt"
"strings"
"github.com/evanw/esbuild/internal/ast"
"github.com/evanw/esbuild/internal/compat"
"github.com/evanw/esbuild/internal/css_ast"
"github.com/evanw/esbuild/internal/css_lexer"
"github.com/evanw/esbuild/internal/logger"
)
// This is mostly a normal CSS parser with one exception: the addition of
// support for parsing https://drafts.csswg.org/css-nesting-1/.
type parser struct {
log logger.Log
source logger.Source
tracker logger.LineColumnTracker
options Options
tokens []css_lexer.Token
stack []css_lexer.T
index int
end int
prevError logger.Loc
importRecords []ast.ImportRecord
}
type Options struct {
UnsupportedCSSFeatures compat.CSSFeature
MangleSyntax bool
RemoveWhitespace bool
}
func Parse(log logger.Log, source logger.Source, options Options) css_ast.AST {
result := css_lexer.Tokenize(log, source)
p := parser{
log: log,
source: source,
tracker: logger.MakeLineColumnTracker(&source),
options: options,
tokens: result.Tokens,
prevError: logger.Loc{Start: -1},
}
p.end = len(p.tokens)
rules := p.parseListOfRules(ruleContext{
isTopLevel: true,
parseSelectors: true,
})
p.expect(css_lexer.TEndOfFile)
return css_ast.AST{
Rules: rules,
ImportRecords: p.importRecords,
ApproximateLineCount: result.ApproximateLineCount,
SourceMapComment: result.SourceMapComment,
}
}
func (p *parser) advance() {
if p.index < p.end {
p.index++
}
}
func (p *parser) at(index int) css_lexer.Token {
if index < p.end {
return p.tokens[index]
}
if p.end < len(p.tokens) {
return css_lexer.Token{
Kind: css_lexer.TEndOfFile,
Range: logger.Range{Loc: p.tokens[p.end].Range.Loc},
}
}
return css_lexer.Token{
Kind: css_lexer.TEndOfFile,
Range: logger.Range{Loc: logger.Loc{Start: int32(len(p.source.Contents))}},
}
}
func (p *parser) current() css_lexer.Token {
return p.at(p.index)
}
func (p *parser) next() css_lexer.Token {
return p.at(p.index + 1)
}
func (p *parser) raw() string {
t := p.current()
return p.source.Contents[t.Range.Loc.Start:t.Range.End()]
}
func (p *parser) decoded() string {
return p.current().DecodedText(p.source.Contents)
}
func (p *parser) peek(kind css_lexer.T) bool {
return kind == p.current().Kind
}
func (p *parser) eat(kind css_lexer.T) bool {
if p.peek(kind) {
p.advance()
return true
}
return false
}
func (p *parser) expect(kind css_lexer.T) bool {
if p.eat(kind) {
return true
}
t := p.current()
var text string
if kind == css_lexer.TSemicolon && p.index > 0 && p.at(p.index-1).Kind == css_lexer.TWhitespace {
// Have a nice error message for forgetting a trailing semicolon
text = "Expected \";\""
t = p.at(p.index - 1)
} else {
switch t.Kind {
case css_lexer.TEndOfFile, css_lexer.TWhitespace:
text = fmt.Sprintf("Expected %s but found %s", kind.String(), t.Kind.String())
t.Range.Len = 0
case css_lexer.TBadURL, css_lexer.TBadString:
text = fmt.Sprintf("Expected %s but found %s", kind.String(), t.Kind.String())
default:
text = fmt.Sprintf("Expected %s but found %q", kind.String(), p.raw())
}
}
if t.Range.Loc.Start > p.prevError.Start {
p.log.AddRangeWarning(&p.tracker, t.Range, text)
p.prevError = t.Range.Loc
}
return false
}
func (p *parser) unexpected() {
if t := p.current(); t.Range.Loc.Start > p.prevError.Start {
var text string
switch t.Kind {
case css_lexer.TEndOfFile, css_lexer.TWhitespace:
text = fmt.Sprintf("Unexpected %s", t.Kind.String())
t.Range.Len = 0
case css_lexer.TBadURL, css_lexer.TBadString:
text = fmt.Sprintf("Unexpected %s", t.Kind.String())
default:
text = fmt.Sprintf("Unexpected %q", p.raw())
}
p.log.AddRangeWarning(&p.tracker, t.Range, text)
p.prevError = t.Range.Loc
}
}
type ruleContext struct {
isTopLevel bool
parseSelectors bool
}
func (p *parser) parseListOfRules(context ruleContext) []css_ast.Rule {
didWarnAboutCharset := false
didWarnAboutImport := false
rules := []css_ast.Rule{}
locs := []logger.Loc{}
loop:
for {
switch p.current().Kind {
case css_lexer.TEndOfFile, css_lexer.TCloseBrace:
break loop
case css_lexer.TWhitespace:
p.advance()
continue
case css_lexer.TAtKeyword:
first := p.current().Range
rule := p.parseAtRule(atRuleContext{})
// Validate structure
if context.isTopLevel {
switch rule.Data.(type) {
case *css_ast.RAtCharset:
if !didWarnAboutCharset && len(rules) > 0 {
p.log.AddRangeWarningWithNotes(&p.tracker, first, "\"@charset\" must be the first rule in the file",
[]logger.MsgData{logger.RangeData(&p.tracker, logger.Range{Loc: locs[len(locs)-1]},
"This rule cannot come before a \"@charset\" rule")})
didWarnAboutCharset = true
}
case *css_ast.RAtImport:
if !didWarnAboutImport {
importLoop:
for i, before := range rules {
switch before.Data.(type) {
case *css_ast.RAtCharset, *css_ast.RAtImport:
default:
p.log.AddRangeWarningWithNotes(&p.tracker, first, "All \"@import\" rules must come first",
[]logger.MsgData{logger.RangeData(&p.tracker, logger.Range{Loc: locs[i]},
"This rule cannot come before an \"@import\" rule")})
didWarnAboutImport = true
break importLoop
}
}
}
}
}
rules = append(rules, rule)
if context.isTopLevel {
locs = append(locs, first.Loc)
}
continue
case css_lexer.TCDO, css_lexer.TCDC:
if context.isTopLevel {
p.advance()
continue
}
}
if context.isTopLevel {
locs = append(locs, p.current().Range.Loc)
}
if context.parseSelectors {
rules = append(rules, p.parseSelectorRule())
} else {
rules = append(rules, p.parseQualifiedRuleFrom(p.index, false /* isAlreadyInvalid */))
}
}
if p.options.MangleSyntax {
rules = removeEmptyAndDuplicateRules(rules)
}
return rules
}
func (p *parser) parseListOfDeclarations() (list []css_ast.Rule) {
for {
switch p.current().Kind {
case css_lexer.TWhitespace, css_lexer.TSemicolon:
p.advance()
case css_lexer.TEndOfFile, css_lexer.TCloseBrace:
list = p.processDeclarations(list)
if p.options.MangleSyntax {
list = removeEmptyAndDuplicateRules(list)
}
return
case css_lexer.TAtKeyword:
list = append(list, p.parseAtRule(atRuleContext{
isDeclarationList: true,
}))
case css_lexer.TDelimAmpersand:
// Reference: https://drafts.csswg.org/css-nesting-1/
list = append(list, p.parseSelectorRule())
default:
list = append(list, p.parseDeclaration())
}
}
}
func removeEmptyAndDuplicateRules(rules []css_ast.Rule) []css_ast.Rule {
type hashEntry struct {
indices []uint32
}
n := len(rules)
start := n
entries := make(map[uint32]hashEntry)
// Scan from the back so we keep the last rule
skipRule:
for i := n - 1; i >= 0; i-- {
rule := rules[i]
switch r := rule.Data.(type) {
case *css_ast.RAtKeyframes:
if len(r.Blocks) == 0 {
continue
}
case *css_ast.RKnownAt:
if len(r.Rules) == 0 {
continue
}
case *css_ast.RSelector:
if len(r.Rules) == 0 {
continue
}
}
if hash, ok := rule.Data.Hash(); ok {
entry := entries[hash]
// For duplicate rules, omit all but the last copy
for _, index := range entry.indices {
if rule.Data.Equal(rules[index].Data) {
continue skipRule
}
}
entry.indices = append(entry.indices, uint32(i))
entries[hash] = entry
}
start--
rules[start] = rule
}
return rules[start:]
}
func (p *parser) parseURLOrString() (string, logger.Range, bool) {
t := p.current()
switch t.Kind {
case css_lexer.TString:
text := p.decoded()
p.advance()
return text, t.Range, true
case css_lexer.TURL:
text := p.decoded()
p.advance()
return text, t.Range, true
case css_lexer.TFunction:
if p.decoded() == "url" {
p.advance()
t = p.current()
text := p.decoded()
if p.expect(css_lexer.TString) && p.expect(css_lexer.TCloseParen) {
return text, t.Range, true
}
}
}
return "", logger.Range{}, false
}
func (p *parser) expectURLOrString() (url string, r logger.Range, ok bool) {
url, r, ok = p.parseURLOrString()
if !ok {
p.expect(css_lexer.TURL)
}
return
}
type atRuleKind uint8
const (
atRuleUnknown atRuleKind = iota
atRuleDeclarations
atRuleInheritContext
atRuleEmpty
)
var specialAtRules = map[string]atRuleKind{
"font-face": atRuleDeclarations,
"page": atRuleDeclarations,
// These go inside "@page": https://www.w3.org/TR/css-page-3/#syntax-page-selector
"bottom-center": atRuleDeclarations,
"bottom-left-corner": atRuleDeclarations,
"bottom-left": atRuleDeclarations,
"bottom-right-corner": atRuleDeclarations,
"bottom-right": atRuleDeclarations,
"left-bottom": atRuleDeclarations,
"left-middle": atRuleDeclarations,
"left-top": atRuleDeclarations,
"right-bottom": atRuleDeclarations,
"right-middle": atRuleDeclarations,
"right-top": atRuleDeclarations,
"top-center": atRuleDeclarations,
"top-left-corner": atRuleDeclarations,
"top-left": atRuleDeclarations,
"top-right-corner": atRuleDeclarations,
"top-right": atRuleDeclarations,
// These properties are very deprecated and appear to only be useful for
// mobile versions of internet explorer (which may no longer exist?), but
// they are used by the https://ant.design/ design system so we recognize
// them to avoid the warning.
//
// Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/@viewport
// Discussion: https://github.com/w3c/csswg-drafts/issues/4766
//
"viewport": atRuleDeclarations,
"-ms-viewport": atRuleDeclarations,
// This feature has been removed from the web because it's actively harmful.
// However, there is one exception where "@-moz-document url-prefix() {" is
// accepted by Firefox to basically be an "if Firefox" conditional rule.
//
// Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/@document
// Discussion: https://bugzilla.mozilla.org/show_bug.cgi?id=1035091
//
"document": atRuleInheritContext,
"-moz-document": atRuleInheritContext,
"media": atRuleInheritContext,
"scope": atRuleInheritContext,
"supports": atRuleInheritContext,
}
type atRuleContext struct {
isDeclarationList bool
}
func (p *parser) parseAtRule(context atRuleContext) css_ast.Rule {
// Parse the name
atToken := p.decoded()
atRange := p.current().Range
kind := specialAtRules[atToken]
p.advance()
// Parse the prelude
preludeStart := p.index
switch atToken {
case "charset":
kind = atRuleEmpty
p.expect(css_lexer.TWhitespace)
if p.peek(css_lexer.TString) {
encoding := p.decoded()
if !strings.EqualFold(encoding, "UTF-8") {
p.log.AddRangeWarning(&p.tracker, p.current().Range,
fmt.Sprintf("\"UTF-8\" will be used instead of unsupported charset %q", encoding))
}
p.advance()
p.expect(css_lexer.TSemicolon)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RAtCharset{Encoding: encoding}}
}
p.expect(css_lexer.TString)
case "import":
kind = atRuleEmpty
p.eat(css_lexer.TWhitespace)
if path, r, ok := p.expectURLOrString(); ok {
importConditionsStart := p.index
for p.current().Kind != css_lexer.TSemicolon && p.current().Kind != css_lexer.TEndOfFile {
p.parseComponentValue()
}
importConditions := p.convertTokens(p.tokens[importConditionsStart:p.index])
kind := ast.ImportAt
// Insert or remove whitespace before the first token
if len(importConditions) > 0 {
kind = ast.ImportAtConditional
if p.options.RemoveWhitespace {
importConditions[0].Whitespace &= ^css_ast.WhitespaceBefore
} else {
importConditions[0].Whitespace |= css_ast.WhitespaceBefore
}
}
p.expect(css_lexer.TSemicolon)
importRecordIndex := uint32(len(p.importRecords))
p.importRecords = append(p.importRecords, ast.ImportRecord{
Kind: kind,
Path: logger.Path{Text: path},
Range: r,
})
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RAtImport{
ImportRecordIndex: importRecordIndex,
ImportConditions: importConditions,
}}
}
case "keyframes", "-webkit-keyframes", "-moz-keyframes", "-ms-keyframes", "-o-keyframes":
p.eat(css_lexer.TWhitespace)
var name string
if p.peek(css_lexer.TIdent) {
name = p.decoded()
p.advance()
} else if !p.expect(css_lexer.TIdent) && !p.eat(css_lexer.TString) && !p.peek(css_lexer.TOpenBrace) {
// Consider string names a syntax error even though they are allowed by
// the specification and they work in Firefox because they do not work in
// Chrome or Safari.
break
}
p.eat(css_lexer.TWhitespace)
if p.expect(css_lexer.TOpenBrace) {
var blocks []css_ast.KeyframeBlock
blocks:
for {
switch p.current().Kind {
case css_lexer.TWhitespace:
p.advance()
continue
case css_lexer.TCloseBrace, css_lexer.TEndOfFile:
break blocks
case css_lexer.TOpenBrace:
p.expect(css_lexer.TPercentage)
p.parseComponentValue()
default:
var selectors []string
selectors:
for {
t := p.current()
switch t.Kind {
case css_lexer.TWhitespace:
p.advance()
continue
case css_lexer.TOpenBrace, css_lexer.TEndOfFile:
break selectors
case css_lexer.TIdent, css_lexer.TPercentage:
text := p.decoded()
if t.Kind == css_lexer.TIdent {
if text == "from" {
if p.options.MangleSyntax {
text = "0%" // "0%" is equivalent to but shorter than "from"
}
} else if text != "to" {
p.expect(css_lexer.TPercentage)
}
} else if p.options.MangleSyntax && text == "100%" {
text = "to" // "to" is equivalent to but shorter than "100%"
}
selectors = append(selectors, text)
p.advance()
default:
p.expect(css_lexer.TPercentage)
p.parseComponentValue()
}
p.eat(css_lexer.TWhitespace)
if t.Kind != css_lexer.TComma && !p.peek(css_lexer.TOpenBrace) {
p.expect(css_lexer.TComma)
}
}
if p.expect(css_lexer.TOpenBrace) {
rules := p.parseListOfDeclarations()
p.expect(css_lexer.TCloseBrace)
// "@keyframes { from {} to { color: red } }" => "@keyframes { to { color: red } }"
if !p.options.MangleSyntax || len(rules) > 0 {
blocks = append(blocks, css_ast.KeyframeBlock{
Selectors: selectors,
Rules: rules,
})
}
}
}
}
p.expect(css_lexer.TCloseBrace)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RAtKeyframes{
AtToken: atToken,
Name: name,
Blocks: blocks,
}}
}
default:
if kind == atRuleUnknown && atToken == "namespace" {
// CSS namespaces are a weird feature that appears to only really be
// useful for styling XML. And the world has moved on from XHTML to
// HTML5 so pretty much no one uses CSS namespaces anymore. They are
// also complicated to support in a bundler because CSS namespaces are
// file-scoped, which means:
//
// * Default namespaces can be different in different files, in which
// case some default namespaces would have to be converted to prefixed
// namespaces to avoid collisions.
//
// * Prefixed namespaces from different files can use the same name, in
// which case some prefixed namespaces would need to be renamed to
// avoid collisions.
//
// Instead of implementing all of that for an extremely obscure feature,
// CSS namespaces are just explicitly not supported.
p.log.AddRangeWarning(&p.tracker, atRange, "\"@namespace\" rules are not supported")
}
}
// Parse an unknown prelude
prelude:
for {
switch p.current().Kind {
case css_lexer.TOpenBrace, css_lexer.TEndOfFile:
break prelude
case css_lexer.TSemicolon, css_lexer.TCloseBrace:
prelude := p.convertTokens(p.tokens[preludeStart:p.index])
// Report an error for rules that should have blocks
if kind != atRuleEmpty && kind != atRuleUnknown {
p.expect(css_lexer.TOpenBrace)
p.eat(css_lexer.TSemicolon)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RUnknownAt{AtToken: atToken, Prelude: prelude}}
}
// Otherwise, parse an unknown at rule
p.expect(css_lexer.TSemicolon)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RUnknownAt{AtToken: atToken, Prelude: prelude}}
default:
p.parseComponentValue()
}
}
prelude := p.convertTokens(p.tokens[preludeStart:p.index])
blockStart := p.index
switch kind {
case atRuleEmpty:
// Report an error for rules that shouldn't have blocks
p.expect(css_lexer.TSemicolon)
p.parseBlock(css_lexer.TOpenBrace, css_lexer.TCloseBrace)
block := p.convertTokens(p.tokens[blockStart:p.index])
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RUnknownAt{AtToken: atToken, Prelude: prelude, Block: block}}
case atRuleDeclarations:
// Parse known rules whose blocks consist of whatever the current context is
p.advance()
rules := p.parseListOfDeclarations()
p.expect(css_lexer.TCloseBrace)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RKnownAt{AtToken: atToken, Prelude: prelude, Rules: rules}}
case atRuleInheritContext:
// Parse known rules whose blocks consist of whatever the current context is
p.advance()
var rules []css_ast.Rule
if context.isDeclarationList {
rules = p.parseListOfDeclarations()
} else {
rules = p.parseListOfRules(ruleContext{
parseSelectors: true,
})
}
p.expect(css_lexer.TCloseBrace)
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RKnownAt{AtToken: atToken, Prelude: prelude, Rules: rules}}
default:
// Otherwise, parse an unknown rule
p.parseBlock(css_lexer.TOpenBrace, css_lexer.TCloseBrace)
block, _ := p.convertTokensHelper(p.tokens[blockStart:p.index], css_lexer.TEndOfFile, convertTokensOpts{allowImports: true})
return css_ast.Rule{Loc: atRange.Loc, Data: &css_ast.RUnknownAt{AtToken: atToken, Prelude: prelude, Block: block}}
}
}
func (p *parser) convertTokens(tokens []css_lexer.Token) []css_ast.Token {
result, _ := p.convertTokensHelper(tokens, css_lexer.TEndOfFile, convertTokensOpts{})
return result
}
type convertTokensOpts struct {
allowImports bool
verbatimWhitespace bool
}
func (p *parser) convertTokensHelper(tokens []css_lexer.Token, close css_lexer.T, opts convertTokensOpts) ([]css_ast.Token, []css_lexer.Token) {
var result []css_ast.Token
var nextWhitespace css_ast.WhitespaceFlags
loop:
for len(tokens) > 0 {
t := tokens[0]
tokens = tokens[1:]
if t.Kind == close {
break loop
}
token := css_ast.Token{
Kind: t.Kind,
Text: t.DecodedText(p.source.Contents),
Whitespace: nextWhitespace,
}
nextWhitespace = 0
switch t.Kind {
case css_lexer.TWhitespace:
if last := len(result) - 1; last >= 0 {
result[last].Whitespace |= css_ast.WhitespaceAfter
}
nextWhitespace = css_ast.WhitespaceBefore
continue
case css_lexer.TNumber:
if p.options.MangleSyntax {
if text, ok := mangleNumber(token.Text); ok {
token.Text = text
}
}
case css_lexer.TPercentage:
if p.options.MangleSyntax {
if text, ok := mangleNumber(token.PercentageValue()); ok {
token.Text = text + "%"
}
}
case css_lexer.TDimension:
token.UnitOffset = t.UnitOffset
if p.options.MangleSyntax {
if text, ok := mangleNumber(token.DimensionValue()); ok {
token.Text = text + token.DimensionUnit()
token.UnitOffset = uint16(len(text))
}
if value, unit, ok := mangleDimension(token.DimensionValue(), token.DimensionUnit()); ok {
token.Text = value + unit
token.UnitOffset = uint16(len(value))
}
}
case css_lexer.TURL:
token.ImportRecordIndex = uint32(len(p.importRecords))
p.importRecords = append(p.importRecords, ast.ImportRecord{
Kind: ast.ImportURL,
Path: logger.Path{Text: token.Text},
Range: t.Range,
IsUnused: !opts.allowImports,
})
token.Text = ""
case css_lexer.TFunction:
var nested []css_ast.Token
original := tokens
nestedOpts := opts
if token.Text == "var" {
// CSS variables require verbatim whitespace for correctness
nestedOpts.verbatimWhitespace = true
}
nested, tokens = p.convertTokensHelper(tokens, css_lexer.TCloseParen, nestedOpts)
token.Children = &nested
// Treat a URL function call with a string just like a URL token
if token.Text == "url" && len(nested) == 1 && nested[0].Kind == css_lexer.TString {
token.Kind = css_lexer.TURL
token.Text = ""
token.Children = nil
token.ImportRecordIndex = uint32(len(p.importRecords))
p.importRecords = append(p.importRecords, ast.ImportRecord{
Kind: ast.ImportURL,
Path: logger.Path{Text: nested[0].Text},
Range: original[0].Range,
IsUnused: !opts.allowImports,
})
}
case css_lexer.TOpenParen:
var nested []css_ast.Token
nested, tokens = p.convertTokensHelper(tokens, css_lexer.TCloseParen, opts)
token.Children = &nested
case css_lexer.TOpenBrace:
var nested []css_ast.Token
nested, tokens = p.convertTokensHelper(tokens, css_lexer.TCloseBrace, opts)
// Pretty-printing: insert leading and trailing whitespace when not minifying
if !opts.verbatimWhitespace && !p.options.RemoveWhitespace && len(nested) > 0 {
nested[0].Whitespace |= css_ast.WhitespaceBefore
nested[len(nested)-1].Whitespace |= css_ast.WhitespaceAfter
}
token.Children = &nested
case css_lexer.TOpenBracket:
var nested []css_ast.Token
nested, tokens = p.convertTokensHelper(tokens, css_lexer.TCloseBracket, opts)
token.Children = &nested
}
result = append(result, token)
}
if !opts.verbatimWhitespace {
for i := range result {
token := &result[i]
// Always remove leading and trailing whitespace
if i == 0 {
token.Whitespace &= ^css_ast.WhitespaceBefore
}
if i+1 == len(result) {
token.Whitespace &= ^css_ast.WhitespaceAfter
}
switch token.Kind {
case css_lexer.TComma:
// Assume that whitespace can always be removed before a comma
token.Whitespace &= ^css_ast.WhitespaceBefore
if i > 0 {
result[i-1].Whitespace &= ^css_ast.WhitespaceAfter
}
// Assume whitespace can always be added after a comma
if p.options.RemoveWhitespace {
token.Whitespace &= ^css_ast.WhitespaceAfter
if i+1 < len(result) {
result[i+1].Whitespace &= ^css_ast.WhitespaceBefore
}
} else {
token.Whitespace |= css_ast.WhitespaceAfter
if i+1 < len(result) {
result[i+1].Whitespace |= css_ast.WhitespaceBefore
}
}
}
}
}
// Insert an explicit whitespace token if we're in verbatim mode and all
// tokens were whitespace. In this case there is no token to attach the
// whitespace before/after flags so this is the only way to represent this.
// This is the only case where this function generates an explicit whitespace
// token. It represents whitespace as flags in all other cases.
if opts.verbatimWhitespace && len(result) == 0 && nextWhitespace == css_ast.WhitespaceBefore {
result = append(result, css_ast.Token{
Kind: css_lexer.TWhitespace,
})
}
return result, tokens
}
func shiftDot(text string, dotOffset int) (string, bool) {
// This doesn't handle numbers with exponents
if strings.ContainsAny(text, "eE") {
return "", false
}
// Handle a leading sign
sign := ""
if len(text) > 0 && (text[0] == '-' || text[0] == '+') {
sign = text[:1]
text = text[1:]
}
// Remove the dot
dot := strings.IndexByte(text, '.')
if dot == -1 {
dot = len(text)
} else {
text = text[:dot] + text[dot+1:]
}
// Move the dot
dot += dotOffset
// Remove any leading zeros before the dot
for len(text) > 0 && dot > 0 && text[0] == '0' {
text = text[1:]
dot--
}
// Remove any trailing zeros after the dot
for len(text) > 0 && len(text) > dot && text[len(text)-1] == '0' {
text = text[:len(text)-1]
}
// Does this number have no fractional component?
if dot >= len(text) {
trailingZeros := strings.Repeat("0", dot-len(text))
return fmt.Sprintf("%s%s%s", sign, text, trailingZeros), true
}
// Potentially add leading zeros
if dot < 0 {
text = strings.Repeat("0", -dot) + text
dot = 0
}
// Insert the dot again
return fmt.Sprintf("%s%s.%s", sign, text[:dot], text[dot:]), true
}
func mangleDimension(value string, unit string) (string, string, bool) {
const msLen = 2
const sLen = 1
// Mangle times: https://developer.mozilla.org/en-US/docs/Web/CSS/time
if strings.EqualFold(unit, "ms") {
if shifted, ok := shiftDot(value, -3); ok && len(shifted)+sLen < len(value)+msLen {
// Convert "ms" to "s" if shorter
return shifted, "s", true
}
}
if strings.EqualFold(unit, "s") {
if shifted, ok := shiftDot(value, 3); ok && len(shifted)+msLen < len(value)+sLen {
// Convert "s" to "ms" if shorter
return shifted, "ms", true
}
}
return "", "", false
}
func mangleNumber(t string) (string, bool) {
original := t
if dot := strings.IndexByte(t, '.'); dot != -1 {
// Remove trailing zeros
for len(t) > 0 && t[len(t)-1] == '0' {
t = t[:len(t)-1]
}
// Remove the decimal point if it's unnecessary
if dot+1 == len(t) {
t = t[:dot]
if t == "" || t == "+" || t == "-" {
t += "0"
}
} else {
// Remove a leading zero
if len(t) >= 3 && t[0] == '0' && t[1] == '.' && t[2] >= '0' && t[2] <= '9' {
t = t[1:]
} else if len(t) >= 4 && (t[0] == '+' || t[0] == '-') && t[1] == '0' && t[2] == '.' && t[3] >= '0' && t[3] <= '9' {
t = t[0:1] + t[2:]
}
}
}
return t, t != original
}
func (p *parser) parseSelectorRule() css_ast.Rule {
preludeStart := p.index
// Try parsing the prelude as a selector list
if list, ok := p.parseSelectorList(); ok {
selector := css_ast.RSelector{Selectors: list}
if p.expect(css_lexer.TOpenBrace) {
selector.Rules = p.parseListOfDeclarations()
p.expect(css_lexer.TCloseBrace)
return css_ast.Rule{Loc: p.tokens[preludeStart].Range.Loc, Data: &selector}
}
}
// Otherwise, parse a generic qualified rule
return p.parseQualifiedRuleFrom(preludeStart, true /* isAlreadyInvalid */)
}
func (p *parser) parseQualifiedRuleFrom(preludeStart int, isAlreadyInvalid bool) css_ast.Rule {
preludeLoc := p.tokens[preludeStart].Range.Loc
loop:
for {
switch p.current().Kind {
case css_lexer.TOpenBrace, css_lexer.TEndOfFile:
break loop
case css_lexer.TSemicolon:
// Error recovery if the block is omitted (likely some CSS meta-syntax)
if !isAlreadyInvalid {
p.expect(css_lexer.TOpenBrace)
}
prelude := p.convertTokens(p.tokens[preludeStart:p.index])
p.advance()
return css_ast.Rule{Loc: preludeLoc, Data: &css_ast.RQualified{Prelude: prelude}}
default:
p.parseComponentValue()
}
}
qualified := css_ast.RQualified{
Prelude: p.convertTokens(p.tokens[preludeStart:p.index]),
}
if p.eat(css_lexer.TOpenBrace) {
qualified.Rules = p.parseListOfDeclarations()
p.expect(css_lexer.TCloseBrace)
} else if !isAlreadyInvalid {
p.expect(css_lexer.TOpenBrace)
}
return css_ast.Rule{Loc: preludeLoc, Data: &qualified}
}
func (p *parser) parseDeclaration() css_ast.Rule {
// Parse the key
keyStart := p.index
keyLoc := p.tokens[keyStart].Range.Loc
ok := false
if p.expect(css_lexer.TIdent) {
p.eat(css_lexer.TWhitespace)
if p.expect(css_lexer.TColon) {
ok = true
}
}
// Parse the value
valueStart := p.index