1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00

properties -> identifier

This commit is contained in:
Sam Stephenson 2011-03-10 17:21:03 -06:00
parent a5b3299ba7
commit f81527231e

View file

@ -21,8 +21,8 @@ module ExecJS
end end
end end
def call(properties, *args) def call(identifier, *args)
eval "#{properties}.apply(this, #{args.to_json})" eval "#{identifier}.apply(this, #{args.to_json})"
end end
protected protected