use instance_variable_set/get instead of eval

opal doesn’t like eval anymore
This commit is contained in:
Torsten Ruger 2018-04-03 19:33:36 +03:00
parent 4a2a1da3ff
commit b9f85f9d2e
3 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ module Parfait
def get_internal_word(index) def get_internal_word(index)
name = get_type().name_at(index) name = get_type().name_at(index)
return nil unless name return nil unless name
eval "@#{name}" instance_variable_get("@#{name}".to_sym)
end end
# 1 -based index # 1 -based index
@ -43,7 +43,7 @@ module Parfait
raise "not type #{@type.class}" unless @type.is_a?(Type) raise "not type #{@type.class}" unless @type.is_a?(Type)
name = @type.name_at(index) name = @type.name_at(index)
raise "object type has no name at index #{index} " unless name raise "object type has no name at index #{index} " unless name
eval "@#{name} = value" instance_variable_set("@#{name}".to_sym, value)
value value
end end
@ -116,7 +116,7 @@ module Parfait
end end
# name comes in as a ruby @var name # name comes in as a ruby @var name
def instance_variable_get name def instance_variable_ged name
var = get_instance_variable name.to_s[1 .. -1].to_sym var = get_instance_variable name.to_s[1 .. -1].to_sym
#puts "getting #{name} #{var}" #puts "getting #{name} #{var}"
var var

View File

@ -45,7 +45,7 @@ class TestSpace < MiniTest::Test
end end
def test_types def test_types
assert @space.instance_variable_get("@types").is_a? Parfait::Dictionary assert @space.instance_variable_ged("@types").is_a? Parfait::Dictionary
end end
def test_types_each def test_types_each
@ -55,7 +55,7 @@ class TestSpace < MiniTest::Test
end end
def test_types_hashes def test_types_hashes
types = @space.instance_variable_get("@types") types = @space.instance_variable_ged("@types")
types.each do |has , type| types.each do |has , type|
assert has.is_a?(Fixnum) , has.inspect assert has.is_a?(Fixnum) , has.inspect
end end

View File

@ -5,7 +5,7 @@ class TypeHash < MiniTest::Test
def setup def setup
Risc.machine.boot Risc.machine.boot
@space = Parfait.object_space @space = Parfait.object_space
@types = @space.instance_variable_get("@types") @types = @space.instance_variable_ged("@types")
@first = @types.values.first @first = @types.values.first
end end