Lines Matching refs:value
53 prop: "value"
59 assert(proxy.prop === "value");
63 handler.get = function () {return "value 2"};
65 assert(proxy.prop === "value 2");
66 assert(proxy.nothing === "value 2");
67 assert(proxy.handler === "value 2");
69 var handler2 = new Proxy({get: function() {return "value 3"}}, {});
72 assert(proxy2.prop === "value 3");
73 assert(proxy2.nothing === "value 3");
74 assert(proxy2.handler === "value 3");
95 var target = {prop: "value"};
97 assert(proxy.prop === "value");
102 var handler = {get: function(r, p){if (p != "key4") return "value"}}
105 assert(proxy.key === "value");
106 assert(proxy.key2 === "value");
107 assert(proxy.key3 === "value");
113 value: "different value"
125 get: function() {return "different value"}
128 assert(proxy.key2 === "value");