class Patm::Pattern::ArrRest

Public Instance Methods

compile_internal(free_index, target_name = "_obj") click to toggle source
# File lib/patm.rb, line 309
def compile_internal(free_index, target_name = "_obj")
  [
    nil,
    [],
    free_index
  ]
end
execute(mmatch, obj) click to toggle source
# File lib/patm.rb, line 302
def execute(mmatch, obj)
  true
end
inspect() click to toggle source
# File lib/patm.rb, line 308
def inspect; "..."; end
rest?() click to toggle source
# File lib/patm.rb, line 305
def rest?
  true
end