Skip to content

Commit

Permalink
Deploying to gh-pages from @ 372c617 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
kainino0x committed Oct 28, 2024
1 parent d5a5dc7 commit 65d576e
Show file tree
Hide file tree
Showing 64 changed files with 68 additions and 66 deletions.
8 changes: 5 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1906,7 +1906,7 @@ class TreeCursor {
*/
next(enter = true) { return this.move(1, enter); }
/**
Move to the next node in a last-to-first pre-order traveral. A
Move to the next node in a last-to-first pre-order traversal. A
node is followed by its last child or, if it has none, its
previous sibling or the previous sibling of the first parent
node that has one.
Expand Down Expand Up @@ -1982,10 +1982,10 @@ class TreeCursor {
if (mustLeave && leave)
leave(this);
mustLeave = this.type.isAnonymous;
if (this.nextSibling())
break;
if (!depth)
return;
if (this.nextSibling())
break;
this.parent();
depth--;
mustLeave = true;
Expand Down Expand Up @@ -26270,6 +26270,8 @@ function selectedLineRanges(state) {
for (let r of state.selection.ranges) {
let fromLine = state.doc.lineAt(r.from);
let toLine = r.to <= fromLine.to ? fromLine : state.doc.lineAt(r.to);
if (toLine.from > fromLine.from && toLine.from == r.to)
toLine = r.to == fromLine.to + 1 ? fromLine : state.doc.lineAt(r.to - 1);
let last = ranges.length - 1;
if (last >= 0 && ranges[last].to > fromLine.from)
ranges[last].to = toLine.to;
Expand Down
2 changes: 1 addition & 1 deletion main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/a-buffer/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/a-buffer/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/alphaToCoverage/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/animometer/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/bitonicSort/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/cameras/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/cameras/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/computeBoids/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/cornell/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/cornell/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/cubemap/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/cubemap/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/deferredRendering/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wgpu-matrix@3.2.0, license MIT */
/* wgpu-matrix@3.3.0, license MIT */
function wrapConstructor(OriginalConstructor, modifier) {
return class extends OriginalConstructor {
constructor(...args) {
Expand Down
2 changes: 1 addition & 1 deletion sample/deferredRendering/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/fractalCube/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/fractalCube/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/gameOfLife/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/helloTriangle/main.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 65d576e

Please sign in to comment.