Protected _selectionsRef
_selectionsRef: undefined | (Anonymous function) = this.node.kind === Kind.SELECTION_SET ? undefined: (next?: GQL.SelectionNode[]): GQL.SelectionNode[] => {const _node = this.node as Mutable<Exclude<SelectionSetMixinNode, GQL.SelectionSetNode>>if (!_node.selectionSet) {_node.selectionSet = Ast.selectionSetNode({ selections: [] })}if (!_node.selectionSet.selections) {_node.selectionSet.selections = []}if (next) {_node.selectionSet.selections = next}return _node.selectionSet.selections as GQL.SelectionNode[]}