-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(css/parser): Store lexed comments (#8091)
**Description:** For now, we leave every comment as a leading comment. As logic for determining leading vs trailing is quite complex, I'll do it with another PR.
- Loading branch information
Showing
946 changed files
with
3,361 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d1097cc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
es/full/bugs-1
284412
ns/iter (± 5574
)287827
ns/iter (± 5397
)0.99
es/full/minify/libraries/antd
1382465135
ns/iter (± 23776206
)1400276528
ns/iter (± 17686894
)0.99
es/full/minify/libraries/d3
290641214
ns/iter (± 5363316
)292603471
ns/iter (± 4457003
)0.99
es/full/minify/libraries/echarts
1100053416
ns/iter (± 8357677
)1114290397
ns/iter (± 17198750
)0.99
es/full/minify/libraries/jquery
88394994
ns/iter (± 714115
)88022132
ns/iter (± 265329
)1.00
es/full/minify/libraries/lodash
103250254
ns/iter (± 824728
)102976947
ns/iter (± 272124
)1.00
es/full/minify/libraries/moment
52036555
ns/iter (± 280807
)51917099
ns/iter (± 164823
)1.00
es/full/minify/libraries/react
18715132
ns/iter (± 60752
)18724305
ns/iter (± 90419
)1.00
es/full/minify/libraries/terser
229500386
ns/iter (± 1057658
)229270812
ns/iter (± 1448828
)1.00
es/full/minify/libraries/three
403790052
ns/iter (± 2798784
)403200760
ns/iter (± 7352475
)1.00
es/full/minify/libraries/typescript
2777808506
ns/iter (± 14920143
)2740230463
ns/iter (± 21726462
)1.01
es/full/minify/libraries/victory
594974165
ns/iter (± 7447994
)591656572
ns/iter (± 11074894
)1.01
es/full/minify/libraries/vue
125430808
ns/iter (± 454021
)124792493
ns/iter (± 493662
)1.01
es/full/codegen/es3
34796
ns/iter (± 201
)34301
ns/iter (± 142
)1.01
es/full/codegen/es5
34871
ns/iter (± 54
)34435
ns/iter (± 81
)1.01
es/full/codegen/es2015
34833
ns/iter (± 64
)34435
ns/iter (± 71
)1.01
es/full/codegen/es2016
34815
ns/iter (± 134
)34397
ns/iter (± 235
)1.01
es/full/codegen/es2017
34749
ns/iter (± 101
)34480
ns/iter (± 106
)1.01
es/full/codegen/es2018
34787
ns/iter (± 87
)34426
ns/iter (± 62
)1.01
es/full/codegen/es2019
34833
ns/iter (± 81
)34412
ns/iter (± 52
)1.01
es/full/codegen/es2020
34836
ns/iter (± 115
)34409
ns/iter (± 96
)1.01
es/full/all/es3
178529776
ns/iter (± 1427070
)179004027
ns/iter (± 1663832
)1.00
es/full/all/es5
170624765
ns/iter (± 646962
)173419539
ns/iter (± 1443581
)0.98
es/full/all/es2015
130278330
ns/iter (± 764238
)130615097
ns/iter (± 1401183
)1.00
es/full/all/es2016
128495223
ns/iter (± 986615
)129154893
ns/iter (± 993530
)0.99
es/full/all/es2017
128604065
ns/iter (± 793785
)128464462
ns/iter (± 1240300
)1.00
es/full/all/es2018
125830639
ns/iter (± 759453
)126562629
ns/iter (± 748685
)0.99
es/full/all/es2019
125723036
ns/iter (± 591833
)125487934
ns/iter (± 1661165
)1.00
es/full/all/es2020
121641064
ns/iter (± 1006678
)121161631
ns/iter (± 1170963
)1.00
es/full/parser
578858
ns/iter (± 3383
)575473
ns/iter (± 4129
)1.01
es/full/base/fixer
17719
ns/iter (± 82
)17618
ns/iter (± 118
)1.01
es/full/base/resolver_and_hygiene
85127
ns/iter (± 198
)83157
ns/iter (± 268
)1.02
This comment was automatically generated by workflow using github-action-benchmark.