diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 16:33:15 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-11 16:33:15 +0200 |
commit | 04e20a76e8022e3c1157314f598b765e9e073dcc (patch) | |
tree | 2a60bd77846f53db60c9351eb65de308da2f30fb /tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs | |
parent | e484d1ecc5e405259767c0fd84072226fee40b71 (diff) | |
download | markdown-rs-04e20a76e8022e3c1157314f598b765e9e073dcc.tar.gz markdown-rs-04e20a76e8022e3c1157314f598b765e9e073dcc.tar.bz2 markdown-rs-04e20a76e8022e3c1157314f598b765e9e073dcc.zip |
Refactor some internals to accept mutable references
Diffstat (limited to 'tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs')
-rw-r--r-- | tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs b/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs index 6a4d451..89e0ebd 100644 --- a/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs +++ b/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs @@ -31,10 +31,10 @@ pub struct Options { /// Rewrite JSX in an MDX file so that components can be passed in and provided. #[allow(dead_code)] pub fn mdx_plugin_recma_jsx_rewrite( - mut program: Program, + program: &mut Program, options: &Options, location: Option<&Location>, -) -> Program { +) { let mut state = State { scopes: vec![], location, @@ -65,8 +65,6 @@ pub fn mdx_plugin_recma_jsx_rewrite( .body .push(create_error_helper(state.development, state.path)); } - - program } /// Collection of different SWC functions. |