"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const UnaryOperation_1 = require("./UnaryOperation");
class BitwiseNot extends UnaryOperation_1.default {
constructor(operand) {
super('~', operand);
}
}
exports.default = BitwiseNot;