(o)
| 1032 | var o5 = Object.create(o3) |
| 1033 | |
| 1034 | function handler(o) { |
| 1035 | return { |
| 1036 | get: function(r, p) { |
| 1037 | // We want to test prototype lookup, so ensure the proxy |
| 1038 | // offers OrdinaryHasInstance behavior. |
| 1039 | if (p === Symbol.hasInstance) { |
| 1040 | return undefined; |
| 1041 | } |
| 1042 | return o; |
| 1043 | } |
| 1044 | } |
| 1045 | } |
| 1046 | |
| 1047 | var f0 = new Proxy(function() {}, handler(o0)) |
| 1048 | var f1 = new Proxy(function() {}, handler(o1)) |
no outgoing calls
no test coverage detected