class Atomy::Code::Pattern

Attributes

node[R]

Public Class Methods

new(node) click to toggle source
# File lib/atomy/code/pattern.rb, line 6
def initialize(node)
  @node = node
end

Public Instance Methods

assign(gen) click to toggle source
value, pattern

on stack

# File lib/atomy/code/pattern.rb, line 15
def assign(gen)
end
bytecode(gen, mod) click to toggle source
# File lib/atomy/code/pattern.rb, line 10
def bytecode(gen, mod)
  mod.compile(gen, @node)
end
splat?() click to toggle source
# File lib/atomy/code/pattern.rb, line 18
def splat?
  false
end