Skip to content

Commit

Permalink
Deploying to gh-pages from @ fc06359 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Dec 6, 2024
1 parent 06268f7 commit 7e1ac01
Show file tree
Hide file tree
Showing 14 changed files with 55 additions and 19 deletions.
5 changes: 4 additions & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ declare namespace $ {
refresh(): void;
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
sync(): Awaited<Result>;
async(): Promise<Result>;
async_raw(): Promise<Result>;
async(): Promise<Result> & {
destructor(): void;
};
step(): Promise<null>;
}
}
Expand Down
2 changes: 1 addition & 1 deletion node.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions node.js
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ var $;
}
return this.cache;
}
async async() {
async async_raw() {
while (true) {
this.fresh();
if (this.cache instanceof Error) {
Expand All @@ -863,6 +863,12 @@ var $;
}
}
}
async() {
const promise = this.async_raw();
if (!promise.destructor)
promise.destructor = () => this.destructor();
return promise;
}
step() {
return new Promise(done => {
const sub = new $mol_wire_pub_sub;
Expand Down Expand Up @@ -7834,7 +7840,7 @@ var $;
'code-docs': /\/\/\/.*?$/,
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*|#!? .*/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ var $;
}
return this.cache;
}
async async() {
async async_raw() {
while (true) {
this.fresh();
if (this.cache instanceof Error) {
Expand All @@ -863,6 +863,12 @@ var $;
}
}
}
async() {
const promise = this.async_raw();
if (!promise.destructor)
promise.destructor = () => this.destructor();
return promise;
}
step() {
return new Promise(done => {
const sub = new $mol_wire_pub_sub;
Expand Down Expand Up @@ -7834,7 +7840,7 @@ var $;
'code-docs': /\/\/\/.*?$/,
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*|#!? .*/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
Expand Down
10 changes: 8 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ var $;
}
return this.cache;
}
async async() {
async async_raw() {
while (true) {
this.fresh();
if (this.cache instanceof Error) {
Expand All @@ -854,6 +854,12 @@ var $;
}
}
}
async() {
const promise = this.async_raw();
if (!promise.destructor)
promise.destructor = () => this.destructor();
return promise;
}
step() {
return new Promise(done => {
const sub = new $mol_wire_pub_sub;
Expand Down Expand Up @@ -7825,7 +7831,7 @@ var $;
'code-docs': /\/\/\/.*?$/,
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*|#!? .*/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,10 @@ declare namespace $ {
refresh(): void;
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
sync(): Awaited<Result>;
async(): Promise<Result>;
async_raw(): Promise<Result>;
async(): Promise<Result> & {
destructor(): void;
};
step(): Promise<null>;
}
}
Expand Down
2 changes: 1 addition & 1 deletion web.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions web.js
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ var $;
}
return this.cache;
}
async async() {
async async_raw() {
while (true) {
this.fresh();
if (this.cache instanceof Error) {
Expand All @@ -848,6 +848,12 @@ var $;
}
}
}
async() {
const promise = this.async_raw();
if (!promise.destructor)
promise.destructor = () => this.destructor();
return promise;
}
step() {
return new Promise(done => {
const sub = new $mol_wire_pub_sub;
Expand Down Expand Up @@ -7260,7 +7266,7 @@ var $;
'code-docs': /\/\/\/.*?$/,
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*|#!? .*/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
Expand Down
2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ var $;
}
return this.cache;
}
async async() {
async async_raw() {
while (true) {
this.fresh();
if (this.cache instanceof Error) {
Expand All @@ -848,6 +848,12 @@ var $;
}
}
}
async() {
const promise = this.async_raw();
if (!promise.destructor)
promise.destructor = () => this.destructor();
return promise;
}
step() {
return new Promise(done => {
const sub = new $mol_wire_pub_sub;
Expand Down Expand Up @@ -7260,7 +7266,7 @@ var $;
'code-docs': /\/\/\/.*?$/,
'code-comment-block': /(?:\/\*[^]*?\*\/|\/\+[^]*?\+\/|<![^]*?>)/,
'code-link': /(?:\w+:\/\/|#)\S+?(?=\s|\\\\|""|$)/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\.*|#!? .*/,
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
'code-call': /\.?\w+ *(?=\()/,
Expand Down

0 comments on commit 7e1ac01

Please sign in to comment.