Add limitation example for '(eval)'

This commit is contained in:
John Backus 2015-10-31 21:59:06 -07:00
parent 499a71f728
commit f3d299bc7e

View file

@ -113,6 +113,14 @@ Mutant cannot emit mutations for...
end
```
* methods defined with eval:
```ruby
class Foo
class_eval('def bar; end') # cannot mutate
end
```
Mutation-Operators:
-------------------