Browse Source

Update boa/src/syntax/ast/op.rs

Co-Authored-By: Iban Eguia <razican@protonmail.ch>
pull/293/head
HalidOdat 4 years ago
parent
commit
f8012bc408
  1. 5
      boa/src/syntax/ast/op.rs

5
boa/src/syntax/ast/op.rs

@ -20,8 +20,9 @@ pub trait Operator {
/// as their operands and return a single numerical value.
///
/// More information:
/// - MDN documentation:
/// <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic>
/// - [MDN documentation][mdn]
///
/// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic
#[cfg_attr(feature = "serde-ast", derive(Serialize, Deserialize))]
#[derive(Clone, Debug, Trace, Finalize, PartialEq)]
pub enum NumOp {

Loading…
Cancel
Save