class SyntaxTree::Field

def initialize(parent:, operator:, name:, location:)

def initialize(parent:, operator:, name:, location:)
  @parent = parent
  @operator = operator
  @name = name
  @location = location
  @comments = []
end