Sha256: d942aa27751881d9f638b042833426346cfce68b4270832d1fdd17d153af071f

Contents?: true

Size: 1.45 KB

Versions: 21

Compression:

Stored size: 1.45 KB

Contents

# encoding: UTF-8
# XSD4R - Generating method definition code
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'xsd/codegen/gensupport'
require 'xsd/codegen/commentdef'


module XSD
module CodeGen


class MethodDef
  include GenSupport
  include CommentDef

  attr_accessor :definition

  def initialize(name, *params)
    klass, mname = name.split('.', 2)
    if mname.nil?
      mname, klass = klass, mname
    end
    unless safemethodname?(mname)
      raise ArgumentError.new("name '#{name}' seems to be unsafe")
    end
    if klass and klass != 'self' and !safeconstname(klass)
      raise ArgumentError.new("name '#{name}' seems to be unsafe")
    end
    @name = name
    @params = params
    @comment = nil
    @definition = yield if block_given?
  end

  def dump
    buf = ""
    buf << dump_comment if @comment
    buf << dump_method_def
    buf << dump_definition if @definition and !@definition.empty?
    buf << dump_method_def_end
    buf
  end

private

  def dump_method_def
    if @params.empty?
      format("def #{@name}")
    else
      format("def #{@name}(#{@params.join(", ")})")
    end
  end

  def dump_method_def_end
    format("end")
  end

  def dump_definition
    format(@definition, 2)
  end
end


end
end

Version data entries

21 entries across 21 versions & 4 rubygems

Version Path
soap4r_es-0.0.10 lib/xsd/codegen/methoddef.rb
soap4r-ng-2.0.6 lib/xsd/codegen/methoddef.rb
soap4r-ng-2.0.5 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.9 lib/xsd/codegen/methoddef.rb
rtiss_soap4r-2.1.1 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.8 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.7 lib/xsd/codegen/methoddef.rb
rtiss_soap4r-2.1.0 lib/xsd/codegen/methoddef.rb
soap4r-ng-2.0.4 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.6 lib/xsd/codegen/methoddef.rb
rtiss_soap4r-2.0.6 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.5 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.4 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.3 lib/xsd/codegen/methoddef.rb
soap4r_es-0.0.1 lib/xsd/codegen/methoddef.rb
rtiss_soap4r-2.0.5 lib/xsd/codegen/methoddef.rb
rtiss_soap4r-2.0.4 lib/xsd/codegen/methoddef.rb
rubyjedi-soap4r-2.0.2.1 lib/xsd/codegen/methoddef.rb
soap4r-ng-2.0.3 lib/xsd/codegen/methoddef.rb
soap4r-ng-2.0.2 lib/xsd/codegen/methoddef.rb