Skip to content

Commit

Permalink
update lezer to 0.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Jan 17, 2025
1 parent b7193cb commit 97e2753
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions frontend/imports/CodemirrorPlutoSetup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ declare abstract class Text implements Iterable<string> {
objects that it is made up of. For leaf nodes, this holds null.
*/
abstract readonly children: readonly Text[] | null;
/**
@hide
*/
[Symbol.iterator]: () => Iterator<string>;
/**
Create a `Text` instance for the given array of lines.
Expand Down Expand Up @@ -6806,6 +6809,7 @@ declare class BlockContext implements PartialParse {
get depth(): number;
parentType(depth?: number): NodeType;
nextLine(): boolean;
peekLine(): string;
private moveRangeI;
private lineChunkAt;
prevLineEnd(): number;
Expand Down
2 changes: 1 addition & 1 deletion frontend/imports/CodemirrorPlutoSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ export {
linter,
setDiagnostics,
//@ts-ignore
} from "https://cdn.jsdelivr.net/gh/JuliaPluto/codemirror-pluto-setup@d17bc01/dist/index.es.min.js"
} from "https://cdn.jsdelivr.net/gh/JuliaPluto/codemirror-pluto-setup@35aa48a/dist/index.es.min.js"

0 comments on commit 97e2753

Please sign in to comment.