diff options
| author | Matthew Toohey <contact@mtoohey.com> | 2024-04-01 16:22:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-01 20:22:54 +0000 |
| commit | dee8ccf04810ee4032fd28b366a4f796b7bf3062 (patch) | |
| tree | c1a93c99c762527e0181508037318ced1bd82e46 /crates/typst-syntax/src/lib.rs | |
| parent | 16c3af7c92de97d14f52319bd375f842ce37a949 (diff) | |
Add side parameter to leaf_at (#3767)
Diffstat (limited to 'crates/typst-syntax/src/lib.rs')
| -rw-r--r-- | crates/typst-syntax/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-syntax/src/lib.rs b/crates/typst-syntax/src/lib.rs index 0ddb1460..6a6063d2 100644 --- a/crates/typst-syntax/src/lib.rs +++ b/crates/typst-syntax/src/lib.rs @@ -21,7 +21,7 @@ pub use self::kind::SyntaxKind; pub use self::lexer::{ is_id_continue, is_id_start, is_ident, is_newline, link_prefix, split_newlines, }; -pub use self::node::{LinkedChildren, LinkedNode, SyntaxError, SyntaxNode}; +pub use self::node::{LinkedChildren, LinkedNode, Side, SyntaxError, SyntaxNode}; pub use self::parser::{parse, parse_code, parse_math}; pub use self::path::VirtualPath; pub use self::source::Source; |
