(funct, name, values)
| 4852 | } |
| 4853 | |
| 4854 | function setprop(funct, name, values) { |
| 4855 | if (!funct["(properties)"][name]) { |
| 4856 | funct["(properties)"][name] = { unused: false }; |
| 4857 | } |
| 4858 | |
| 4859 | _.extend(funct["(properties)"][name], values); |
| 4860 | } |
| 4861 | |
| 4862 | function getprop(funct, name, prop) { |
| 4863 | if (!funct["(properties)"][name]) |
no outgoing calls
no test coverage detected