| 170 | } |
| 171 | |
| 172 | static JSRef<T> makeRetained(IJavaScriptContext& context, const T& value) { |
| 173 | auto ref = JSRef<T>(&context, value, false); |
| 174 | ref.retain(); |
| 175 | return ref; |
| 176 | } |
| 177 | |
| 178 | static JSRef<T> makeUnretained(IJavaScriptContext& context, const T& value) { |
| 179 | return JSRef<T>(&context, value, false); |