class GraphQL::StaticValidation::TypeStack::FragmentSpreadStrategy

def pop(stack, node)

def pop(stack, node)
  stack.path.pop
end

def push(stack, node)

def push(stack, node)
  stack.path.push("... #{node.name}")
end