@devvit/runtime-lite 0.11.0-next-2024-07-12-f7e815447.0 → 0.11.0-next-2024-07-12-b7357c68f.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/runtime-lite",
3
- "version": "0.11.0-next-2024-07-12-f7e815447.0",
3
+ "version": "0.11.0-next-2024-07-12-b7357c68f.0",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "type": "git",
@@ -46,11 +46,11 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@ampproject/filesize": "4.3.0",
49
- "@devvit/eslint-config": "0.11.0-next-2024-07-12-f7e815447.0",
50
- "@devvit/protos": "0.11.0-next-2024-07-12-f7e815447.0",
51
- "@devvit/repo-tools": "0.11.0-next-2024-07-12-f7e815447.0",
52
- "@devvit/shared-types": "0.11.0-next-2024-07-12-f7e815447.0",
53
- "@devvit/tsconfig": "0.11.0-next-2024-07-12-f7e815447.0",
49
+ "@devvit/eslint-config": "0.11.0-next-2024-07-12-b7357c68f.0",
50
+ "@devvit/protos": "0.11.0-next-2024-07-12-b7357c68f.0",
51
+ "@devvit/repo-tools": "0.11.0-next-2024-07-12-b7357c68f.0",
52
+ "@devvit/shared-types": "0.11.0-next-2024-07-12-b7357c68f.0",
53
+ "@devvit/tsconfig": "0.11.0-next-2024-07-12-b7357c68f.0",
54
54
  "@jitl/quickjs-singlefile-browser-release-sync": "0.29.0",
55
55
  "base64-js": "1.5.1",
56
56
  "chokidar-cli": "3.0.0",
@@ -80,5 +80,5 @@
80
80
  }
81
81
  },
82
82
  "source": "./src/index.ts",
83
- "gitHead": "0ed144ccca7964528ac7e6a241ba97b64f5df936"
83
+ "gitHead": "9e094672572731dd9e45ed6547038276d83425e6"
84
84
  }
@@ -223,7 +223,7 @@ export class SandboxedRuntimeLite {
223
223
  }
224
224
  }
225
225
  async callBinary(method, args, meta) {
226
- return await callBinary(__classPrivateFieldGet(this, _SandboxedRuntimeLite_methodMsgMap, "f")[method], this.call, method, args, meta);
226
+ return await callBinary(__classPrivateFieldGet(this, _SandboxedRuntimeLite_methodMsgMap, "f")[method], this.call.bind(this), method, args, meta);
227
227
  }
228
228
  async call(method, args, meta, binary) {
229
229
  if (binary) {
@@ -130,7 +130,7 @@ export class UnsandboxedRuntimeLite {
130
130
  }
131
131
  }
132
132
  async callBinary(method, args, meta) {
133
- return await callBinary(__classPrivateFieldGet(this, _UnsandboxedRuntimeLite_methodMsgMap, "f")[method], this.call, method, args, meta);
133
+ return await callBinary(__classPrivateFieldGet(this, _UnsandboxedRuntimeLite_methodMsgMap, "f")[method], this.call.bind(this), method, args, meta);
134
134
  }
135
135
  async call(method, args, meta, binary) {
136
136
  if (binary) {