aboutsummaryrefslogtreecommitdiff
path: root/test/snapshots/code-simplification-neql-define.hmr.js
blob: 93dfde11fdd039ab51608d6f5985f247e29bda6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import {
__HMRClient as Bun
} from "http://localhost:8080/bun:wrap";
Bun.activate(false);
import {
__FastRefreshModule as FastHMR
} from "http://localhost:8080/bun:wrap";
import {
__FastRefreshRuntime as FastRefresh
} from "http://localhost:8080/bun:wrap";
var hmr = new FastHMR(373889696, "code-simplification-neql-define.js", FastRefresh), exports = hmr.exports;
(hmr._load = function() {
  var testFailed = false;
  const invariant = () => {
    testFailed = true;
  };
  var $$m = (arg) => {
    var module = { exports: {} }, exports = module.exports;
    return arg(module, exports);
  };
  var $f332019d = $$m({
    "relay-runtime/lib/network/RelayQueryResponseCache.js": (module, exports) => {
      var RelayQueryResponseCache = function() {
        var foo = function RelayQueryResponseCache(_ref) {
          var size = _ref.size, ttl = _ref.ttl;
          !(size > 0) && invariant(false, "RelayQueryResponseCache: Expected the max cache size to be > 0, got `%s`.", size);
          !(ttl > 0) && invariant(false, "RelayQueryResponseCache: Expected the max ttl to be > 0, got `%s`.", ttl);
        };
        foo({ size: 100, ttl: 3600 });
      };
      RelayQueryResponseCache();
    }
  }["relay-runtime/lib/network/RelayQueryResponseCache.js"]);
  function test() {
    var foo = () => result;
    if (testFailed)
      throw new Error("invariant should not be called");
    return testDone(import.meta.url);
  }
  hmr.exportAll({
    $f332019d: () => $f332019d,
    test: () => test
  });
})();
var $$hmr_$f332019d = hmr.exports.$f332019d, $$hmr_test = hmr.exports.test;
hmr._update = function(exports) {
  $$hmr_$f332019d = exports.$f332019d;
  $$hmr_test = exports.test;
};

export {
  $$hmr_$f332019d as $f332019d,
  $$hmr_test as test
};

//# sourceMappingURL=http://localhost:8080/code-simplification-neql-define.js.map
d Sumner 2-2/+2 2023-01-19Fix buffer encoding bugGravatar Jarred Sumner 2-4/+17 2023-01-19use `String.from()` (#1850)Gravatar Alex Lam S.L 4-5/+12 2023-01-19Bump zigGravatar Jarred Sumner 2-2/+2 2023-01-19make it packedGravatar Jarred Sumner 1-2/+2 2023-01-20Bugfixes to install (#1848)Gravatar Jarred Sumner 5-26/+119 2023-01-19repopulate `alias_map` correctly (#1847)Gravatar Alex Lam S.L 5-70/+240 2023-01-19Add a commentGravatar Jarred Sumner 1-0/+6 2023-01-19Add a debug safety check for UAF in AST nodesGravatar Jarred Sumner 1-0/+5 2023-01-19Fix UAF when opening workspacesGravatar Jarred Sumner 1-2/+0 2023-01-19Improve error message when a workspace is not foundGravatar Jarred Sumner 2-9/+97