(propertyName)
| 4317 | }; |
| 4318 | |
| 4319 | var makeGetter = function (propertyName) { |
| 4320 | return new Function("obj", " \n\ |
| 4321 | 'use strict'; \n\ |
| 4322 | return obj.propertyName; \n\ |
| 4323 | ".replace("propertyName", propertyName)); |
| 4324 | }; |
| 4325 | |
| 4326 | var getCompiled = function(name, compiler, cache) { |
| 4327 | var ret = cache[name]; |
nothing calls this directly
no outgoing calls
no test coverage detected