class GraphQL::StaticValidation::TypeStack::DirectiveStrategy
def pop(stack, node)
def pop(stack, node) stack.directive_definitions.pop end
def push(stack, node)
def push(stack, node) directive_defn = stack.schema.directives[node.name] stack.directive_definitions.push(directive_defn) end