Interface Unary

interface Unary {
    expression: Expression[];
    kind: "unary";
    operator: "++" | "--" | "~" | "!" | "+" | "-" | "&" | "*";
}

Properties

expression: Expression[]
kind: "unary"
operator: "++" | "--" | "~" | "!" | "+" | "-" | "&" | "*"