class WAG::Instruction::Local::Set

Attributes

label[R]

Public Class Methods

new(label) click to toggle source
# File lib/wag/instructions/local/set.rb, line 10
def initialize(label)
  @label = WAG::Label.from(label)
end

Public Instance Methods

to_sexpr() click to toggle source
# File lib/wag/instructions/local/set.rb, line 14
def to_sexpr
  [name, label.to_sexpr]
end