Skip to content

Commit

Permalink
docs(transformer): exponentiation transform: update doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Oct 6, 2024
1 parent 4719f5f commit d384000
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions crates/oxc_transformer/src/es2016/exponentiation_operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
//!
//! ## References:
//!
//! * Babel plugin implementation: <https://github.com/babel/babel/blob/main/packages/babel-plugin-transform-exponentiation-operator>
//! * Babel plugin implementation:
//! <https://github.com/babel/babel/blob/main/packages/babel-plugin-transform-exponentiation-operator>
//! <https://github.com/babel/babel/tree/main/packages/babel-helper-builder-binary-assignment-operator-visitor>
//! * Exponentiation operator TC39 proposal: <https://github.com/tc39/proposal-exponentiation-operator>
//! * Exponentiation operator specification: <https://tc39.es/ecma262/#sec-exp-operator>
Expand All @@ -39,12 +41,6 @@ use oxc_traverse::{Traverse, TraverseCtx};

use crate::TransformCtx;

/// ES2016: Exponentiation Operator
///
/// References:
/// * <https://babel.dev/docs/babel-plugin-transform-exponentiation-operator>
/// * <https://github.com/babel/babel/blob/main/packages/babel-plugin-transform-exponentiation-operator>
/// * <https://github.com/babel/babel/blob/main/packages/babel-helper-builder-binary-assignment-operator-visitor>
pub struct ExponentiationOperator<'a, 'ctx> {
ctx: &'ctx TransformCtx<'a>,
}
Expand Down

0 comments on commit d384000

Please sign in to comment.