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