(obj)
| 9385 | } |
| 9386 | |
| 9387 | function toFastProperties(obj) { |
| 9388 | /*jshint -W027,-W055,-W031*/ |
| 9389 | function FakeConstructor() {} |
| 9390 | FakeConstructor.prototype = obj; |
| 9391 | var l = 8; |
| 9392 | while (l--) new FakeConstructor(); |
| 9393 | return obj; |
| 9394 | eval(obj); |
| 9395 | } |
| 9396 | |
| 9397 | var rident = /^[a-z$_][a-z$_0-9]*$/i; |
| 9398 | function isIdentifier(str) { |
nothing calls this directly
no outgoing calls
no test coverage detected