refactor(transformer): remove outdated comment (#3606)

Remove a TODO comment where the do is done.

This was covered by #3258 and #3287.
This commit is contained in:
overlookmotel 2024-06-10 12:59:43 +00:00
parent a799225471
commit 3467e3da8e

View file

@ -15,10 +15,6 @@ const SELF: &str = "__self";
///
/// In: `<sometag />`
/// Out: `<sometag __self={this} />`
///
/// TODO:
/// *. Omit adding `this` in some conditions
/// <https://github.com/babel/babel/blob/9cd048b5ad45eafd157c4f9968343e36170a66c1/packages/babel-plugin-transform-react-jsx-self/src/index.ts#L78>
pub struct ReactJsxSelf<'a> {
ctx: Ctx<'a>,
}