class Oxide::Language::Nodes::Field
- Oxide::Language::Nodes::Field
- Oxide::Language::Nodes::Node
- Reference
- Object
Defined in:
oxide/language/nodes.crConstructors
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #accept(visitor : Visitor)
- #alias : String | Nil
- #arguments : Array(Argument)
- #directives : Array(Directive)
-
#hash(hasher)
See
Object#hash(hasher)
- #name : String
- #selection_set : SelectionSet | Nil
-
#to_json_object_key
TODO Re-serailize errors properly
Instance methods inherited from class Oxide::Language::Nodes::Node
begin_column : Int32 | Nil
begin_column,
begin_column=(begin_column : Int32 | Nil)
begin_column=,
begin_line : Int32 | Nil
begin_line,
begin_line=(begin_line : Int32 | Nil)
begin_line=,
to_location
to_location
Instance methods inherited from module Oxide::Language::Visitable
accept(visitor : Visitor)
accept
Constructor Detail
def self.new(name : String, alias __arg0 : Nil | String = nil, arguments : Array(Oxide::Language::Nodes::Argument) = [] of Argument, selection_set : Nil | Oxide::Language::Nodes::SelectionSet = nil, directives : Array(Oxide::Language::Nodes::Directive) = [] of Directive)
#
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.