ESCalc - v0.0.1-beta.2
    Preparing search index...

    Type Alias UnaryExpression

    type UnaryExpression = {
        expression: LogicalExpression;
        location: SourceRegion | null;
        operator: "not" | "bit-complement" | "negate";
        type: "unary";
    }
    Index

    Properties

    expression: LogicalExpression
    location: SourceRegion | null
    operator: "not" | "bit-complement" | "negate"
    type: "unary"