swc/css/parser
Donny/강동윤 b206404d94
feat(css): Recover from invalid properties (#2312)
swc_css_ast:
 - Add `DeclBlockItem`.
 - Change `DeclBlock.properties` to `DeclBlock.items`.

swc_css_parser:
 - Add a way to recovered errors.
2021-09-28 09:58:56 +00:00
..
src feat(css): Recover from invalid properties (#2312) 2021-09-28 09:58:56 +00:00
tests feat(css): Recover from invalid properties (#2312) 2021-09-28 09:58:56 +00:00
Cargo.toml feat(css): Recover from invalid properties (#2312) 2021-09-28 09:58:56 +00:00
README.md feat(css): Implement parser (#2074) 2021-08-19 05:16:32 +00:00

swc_css_parser

CSS parser for the swc project

Structure

tests

/tests/fuxture

CSS -> Parsed ast -> JSON.

/tests/error

Error reporting test.

/tests/identity

These tests ensure that input.css and input.explicit.css is parsed identically. These are copied from esbuild, by modifying the test suite.

The name of a test is base64_url(md5(name)).

License

Apache 2.0 / MIT, at your option.

Lots of tests are copied from rome toools and esbuild. If you want to use tests, please consult license of those libraries.