doc(contributing): Remove enum_kind from ARCHITECTURE.md (#8666)

This commit is contained in:
Changwoo Yoo 2024-02-27 12:53:03 +09:00 committed by GitHub
parent 942c95be2d
commit f5651e87b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,6 @@ This document gives a high level overview of SWC internals. You may find it usef
SWC uses proc macro extensively to reduce work. Please see links below to know what each macro do. SWC uses proc macro extensively to reduce work. Please see links below to know what each macro do.
- [enum_kind][]
- [string_enum][] - [string_enum][]
- [ast_node][] - [ast_node][]
@ -145,7 +144,6 @@ Parser tests ensure that the parsed results of `test262/pass` are identical with
Codegen tests ensure that the generated code is equivalent to the golden fixture files located at [tests/references](crates/swc_ecma_codegen/tests). Codegen tests ensure that the generated code is equivalent to the golden fixture files located at [tests/references](crates/swc_ecma_codegen/tests).
[enum_kind]: https://rustdoc.swc.rs/enum_kind/derive.Kind.html
[string_enum]: https://rustdoc.swc.rs/string_enum/derive.StringEnum.html [string_enum]: https://rustdoc.swc.rs/string_enum/derive.StringEnum.html
[ast_node]: https://rustdoc.swc.rs/ast_node/index.html [ast_node]: https://rustdoc.swc.rs/ast_node/index.html
[parser_macros]: https://rustdoc.swc.rs/swc_ecma_parser_macros/index.html [parser_macros]: https://rustdoc.swc.rs/swc_ecma_parser_macros/index.html