module Abstriker::SyntaxMethods

Private Instance Methods

abstract(symbol) click to toggle source
# File lib/abstriker.rb, line 79
def abstract(symbol)
  method_set = Abstriker.abstract_methods[self] ||= Set.new
  method_set.add(symbol)
end