aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/gw.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-08-18 01:46:34 -0300
committerdequis <dx@dxzone.com.ar>2015-09-10 23:31:10 -0300
commitb57fed05ddf3eb05dee41c0b33fac72fdb57d6f4 (patch)
treea49365aa16e5dff26a8b6d7260e2c950bb291bc1 /protocols/msn/gw.c
parentdc96e6e002f5f1cc415ff5fb5b073f4e4cd35bb0 (diff)
CAP LS
Diffstat (limited to 'protocols/msn/gw.c')
0 files changed, 0 insertions, 0 deletions
e='hotfix/0.20.0.1'>hotfix/0.20.0.1 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/rdoc-2.4.3/lib/rdoc/normal_class.rb
blob: 9a5c5e33a4a1f92378e511a2f414d8a4e3faad83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rdoc/class_module'

##
# A normal class, neither singleton nor anonymous

class RDoc::NormalClass < RDoc::ClassModule

  def inspect # :nodoc:
    superclass = @superclass ? " < #{@superclass}" : nil
    "<%s:0x%x class %s%s includes: %p attributes: %p methods: %p aliases: %p>" % [
      self.class, object_id,
      full_name, superclass, @includes, @attributes, @method_list, @aliases
    ]
  end

end