(obj)
| 20255 | } |
| 20256 | |
| 20257 | function walkNative(obj) { |
| 20258 | while (!obj.identifier && typeof obj.left === "object") |
| 20259 | obj = obj.left; |
| 20260 | |
| 20261 | if (obj.identifier && natives.indexOf(obj.value) >= 0 && |
| 20262 | state.funct["(scope)"].isPredefined(obj.value)) { |
| 20263 | return obj.value; |
| 20264 | } |
| 20265 | } |
| 20266 | |
| 20267 | var prototype = walkPrototype(left); |
| 20268 | if (prototype) return walkNative(prototype); |
no test coverage detected