(rawValue, shallow)
| 1523 | return createRef(value, false); |
| 1524 | } |
| 1525 | function createRef(rawValue, shallow) { |
| 1526 | if (/* @__PURE__ */ isRef(rawValue)) { |
| 1527 | return rawValue; |
| 1528 | } |
| 1529 | return new RefImpl(rawValue, shallow); |
| 1530 | } |
| 1531 | class RefImpl { |
| 1532 | constructor(value, isShallow2) { |
| 1533 | this.dep = new Dep(); |