Method: CEML::BasicInstruction#role

Defined in:
lib/ceml/lang/basic_instruction.rb

#roleObject

TODO: bug right here def role; id.respond_to?(:text_value) && id.text_value.to_sym || :none; end



6
7
8
9
10
11
12
# File 'lib/ceml/lang/basic_instruction.rb', line 6

def role;
  if id.respond_to?(:text_value)
    id.text_value.to_sym
  else
    raise "holy fuck"
  end
end