class Patm::Pattern::Any

Public Instance Methods

compile_internal(free_index, target_name = "_obj") click to toggle source
# File lib/patm.rb, line 344
def compile_internal(free_index, target_name = "_obj")
  [
    nil,
    [],
    free_index
  ]
end
execute(match, obj) click to toggle source
# File lib/patm.rb, line 342
def execute(match, obj); true; end
inspect() click to toggle source
# File lib/patm.rb, line 343
def inspect; 'ANY'; end