Sha256: c13d1b28b76cfcc7f1eaa516ea64124e33e2abaf28a31cdf7084ced769dfd486

Contents?: true

Size: 534 Bytes

Versions: 14

Compression:

Stored size: 534 Bytes

Contents

# encoding: utf-8

Mutant::Meta::Example.add do
  source 'super'

  singleton_mutations
end

Mutant::Meta::Example.add do
  source 'super()'

  singleton_mutations
  # this is zsuper a totally different node than super()
  mutation 'super'
end

Mutant::Meta::Example.add do
  source 'super(foo, bar)'

  singleton_mutations
  mutation 'super'
  mutation 'super()'
  mutation 'super(foo)'
  mutation 'super(bar)'
  mutation 'super(foo, nil)'
  mutation 'super(foo, self)'
  mutation 'super(nil, bar)'
  mutation 'super(self, bar)'
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
mutant-0.7.8 meta/super.rb
mutant-0.7.7 meta/super.rb
mutant-0.7.6 meta/super.rb
mutant-0.7.5 meta/super.rb
mutant-0.7.4 meta/super.rb
mutant-0.7.3 meta/super.rb
mutant-0.7.2 meta/super.rb
mutant-0.7.1 meta/super.rb
mutant-0.6.7 meta/super.rb
mutant-0.6.6 meta/super.rb
mutant-0.6.5 meta/super.rb
mutant-0.6.4 meta/super.rb
mutant-0.6.3 meta/super.rb
mutant-0.6.2 meta/super.rb