import AbstractBinaryOperatorNode from './AbstractBinaryNode';
export default class Eqt extends AbstractBinaryOperatorNode {
    readonly name = "eqt";
}
