Method: Minjs::ECMA262::ECMA262RegExp#==
- Defined in:
- lib/minjs/ecma262/literal.rb
#==(obj) ⇒ Object
compare object
950 951 952 |
# File 'lib/minjs/ecma262/literal.rb', line 950 def ==(obj) self.class == obj.class and @body == obj.body and @flags == obj.flags end |