class Fast::Not

Negates the current expression `!int` is equilvalent to “not int”

Public Instance Methods

match?(node) click to toggle source
Calls superclass method Fast::Find#match?
# File lib/fast.rb, line 660
def match?(node)
  !super
end