qsharp-lang 1.17.2-dev → 1.17.3-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/node/qsc_wasm.cjs +1 -1
- package/lib/node/qsc_wasm_bg.wasm +0 -0
- package/lib/web/qsc_wasm.js +1 -1
- package/lib/web/qsc_wasm_bg.wasm +0 -0
- package/package.json +1 -1
- package/ux/README.md +1 -1
package/README.md
CHANGED
|
@@ -46,9 +46,9 @@ All operations return a Promise which resolves then the operation is complete. S
|
|
|
46
46
|
may also emit events, such as debug messages or state dumps as they are processed. The service
|
|
47
47
|
itself can also emit events which can be subscribed to using `addEventListener`.
|
|
48
48
|
|
|
49
|
-
See the Q# playground code at <https://github.com/microsoft/qsharp/tree/main/playground> for
|
|
49
|
+
See the Q# playground code at <https://github.com/microsoft/qsharp/tree/main/source/playground> for
|
|
50
50
|
an example of code that uses this package. The unit tests at
|
|
51
|
-
<https://github.com/microsoft/qsharp/tree/main/npm/test> are also a good reference.
|
|
51
|
+
<https://github.com/microsoft/qsharp/tree/main/source/npm/test> are also a good reference.
|
|
52
52
|
|
|
53
53
|
Promises, Events, and Cancellation are based on JavaScript or Web standards, or the VS Code API:
|
|
54
54
|
|
package/lib/node/qsc_wasm.cjs
CHANGED
|
@@ -1527,7 +1527,7 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
1527
1527
|
return ret;
|
|
1528
1528
|
};
|
|
1529
1529
|
|
|
1530
|
-
module.exports.
|
|
1530
|
+
module.exports.__wbindgen_closure_wrapper982 = function(arg0, arg1, arg2) {
|
|
1531
1531
|
const ret = makeMutClosure(arg0, arg1, 385, __wbg_adapter_52);
|
|
1532
1532
|
return addHeapObject(ret);
|
|
1533
1533
|
};
|
|
Binary file
|
package/lib/web/qsc_wasm.js
CHANGED
|
@@ -1482,7 +1482,7 @@ function __wbg_get_imports() {
|
|
|
1482
1482
|
const ret = false;
|
|
1483
1483
|
return ret;
|
|
1484
1484
|
};
|
|
1485
|
-
imports.wbg.
|
|
1485
|
+
imports.wbg.__wbindgen_closure_wrapper982 = function(arg0, arg1, arg2) {
|
|
1486
1486
|
const ret = makeMutClosure(arg0, arg1, 385, __wbg_adapter_52);
|
|
1487
1487
|
return addHeapObject(ret);
|
|
1488
1488
|
};
|
package/lib/web/qsc_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/ux/README.md
CHANGED