mirror of
https://github.com/typst/typst
synced 2025-05-17 10:35:28 +08:00
Deal with the effects of keywords
This commit is contained in:
parent
0663758fbb
commit
9141cba6a9
@ -29,7 +29,7 @@ pub fn parse(src: &str) -> Rc<GreenNode> {
|
|||||||
pub fn parse_atomic(src: &str, _: bool) -> Option<Vec<Green>> {
|
pub fn parse_atomic(src: &str, _: bool) -> Option<Vec<Green>> {
|
||||||
let mut p = Parser::new(src, TokenMode::Code);
|
let mut p = Parser::new(src, TokenMode::Code);
|
||||||
primary(&mut p, true).ok()?;
|
primary(&mut p, true).ok()?;
|
||||||
p.eject()
|
p.eject_partial()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse some markup. Returns `Some` if all of the input was consumed.
|
/// Parse some markup. Returns `Some` if all of the input was consumed.
|
||||||
@ -49,10 +49,32 @@ pub fn parse_markup_elements(src: &str, mut at_start: bool) -> Option<Vec<Green>
|
|||||||
p.eject()
|
p.eject()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse some code. Returns `Some` if all of the input was consumed.
|
/// Parse a template literal. Returns `Some` if all of the input was consumed.
|
||||||
pub fn parse_code(src: &str, _: bool) -> Option<Vec<Green>> {
|
pub fn parse_template(source: &str, _: bool) -> Option<Vec<Green>> {
|
||||||
let mut p = Parser::new(src, TokenMode::Code);
|
let mut p = Parser::new(source, TokenMode::Code);
|
||||||
expr_list(&mut p);
|
if !matches!(p.peek(), Some(NodeKind::LeftBracket)) {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
template(&mut p);
|
||||||
|
p.eject()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parse a code block. Returns `Some` if all of the input was consumed.
|
||||||
|
pub fn parse_block(source: &str, _: bool) -> Option<Vec<Green>> {
|
||||||
|
let mut p = Parser::new(source, TokenMode::Code);
|
||||||
|
if !matches!(p.peek(), Some(NodeKind::LeftBrace)) {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
block(&mut p);
|
||||||
|
p.eject()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parse a comment. Returns `Some` if all of the input was consumed.
|
||||||
|
pub fn parse_comment(source: &str, _: bool) -> Option<Vec<Green>> {
|
||||||
|
let mut p = Parser::new(source, TokenMode::Code);
|
||||||
|
comment(&mut p).ok()?;
|
||||||
p.eject()
|
p.eject()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -742,3 +764,14 @@ fn body(p: &mut Parser) -> ParseResult {
|
|||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parse a comment.
|
||||||
|
fn comment(p: &mut Parser) -> ParseResult {
|
||||||
|
match p.peek() {
|
||||||
|
Some(NodeKind::LineComment | NodeKind::BlockComment) => {
|
||||||
|
p.eat();
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
_ => Err(()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -95,6 +95,12 @@ impl<'s> Parser<'s> {
|
|||||||
output
|
output
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// End the parsing process and return multiple children, even if there
|
||||||
|
/// remains stuff in the string.
|
||||||
|
pub fn eject_partial(self) -> Option<Vec<Green>> {
|
||||||
|
self.group_success().then(|| self.children)
|
||||||
|
}
|
||||||
|
|
||||||
/// Whether the end of the source string or group is reached.
|
/// Whether the end of the source string or group is reached.
|
||||||
pub fn eof(&self) -> bool {
|
pub fn eof(&self) -> bool {
|
||||||
self.eof
|
self.eof
|
||||||
|
@ -558,11 +558,15 @@ mod tests {
|
|||||||
// Test type invariants.
|
// Test type invariants.
|
||||||
test("#for x in array {x}", 16 .. 19, "[#x]", true);
|
test("#for x in array {x}", 16 .. 19, "[#x]", true);
|
||||||
test("#let x = 1 {5}", 1 .. 4, "if", false);
|
test("#let x = 1 {5}", 1 .. 4, "if", false);
|
||||||
|
test("{let x = 1 {5}}", 1 .. 4, "if", true);
|
||||||
test("#let x = 1 {5}", 4 .. 4, " if", false);
|
test("#let x = 1 {5}", 4 .. 4, " if", false);
|
||||||
|
test("{let x = 1 {5}}", 4 .. 4, " if", true);
|
||||||
test("a // b c #f()", 3 .. 4, "", false);
|
test("a // b c #f()", 3 .. 4, "", false);
|
||||||
|
test("{\nf()\n//g(a)\n}", 6 .. 8, "", true);
|
||||||
|
test("{(1, 2)}", 1 .. 1, "while ", true);
|
||||||
|
|
||||||
// this appearantly works but the assertion fails.
|
// this appearantly works but the assertion fails.
|
||||||
// test("a b c", 1 .. 1, "{[}", true);
|
test("a b c", 1 .. 1, "{[}", true);
|
||||||
|
|
||||||
// Test unclosed things.
|
// Test unclosed things.
|
||||||
test(r#"{"hi"}"#, 4 .. 5, "c", false);
|
test(r#"{"hi"}"#, 4 .. 5, "c", false);
|
||||||
@ -571,7 +575,7 @@ mod tests {
|
|||||||
test(r"{{let x = z}; a = 1} b", 6 .. 6, "//", false);
|
test(r"{{let x = z}; a = 1} b", 6 .. 6, "//", false);
|
||||||
|
|
||||||
// these appearantly works but the assertion fails.
|
// these appearantly works but the assertion fails.
|
||||||
// test(r#"a ```typst hello``` b"#, 16 .. 17, "", false);
|
test(r#"a ```typst hello``` b"#, 16 .. 17, "", false);
|
||||||
// test(r#"a ```typst hello```"#, 16 .. 17, "", true);
|
test(r#"a ```typst hello```"#, 16 .. 17, "", true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,8 @@ use self::ast::{MathNode, RawNode, TypedNode};
|
|||||||
use crate::diag::Error;
|
use crate::diag::Error;
|
||||||
use crate::geom::{AngularUnit, LengthUnit};
|
use crate::geom::{AngularUnit, LengthUnit};
|
||||||
use crate::parse::{
|
use crate::parse::{
|
||||||
parse_atomic, parse_code, parse_markup, parse_markup_elements, TokenMode,
|
parse_atomic, parse_block, parse_comment, parse_markup, parse_markup_elements,
|
||||||
|
parse_template, TokenMode,
|
||||||
};
|
};
|
||||||
use crate::source::SourceId;
|
use crate::source::SourceId;
|
||||||
use crate::util::EcoString;
|
use crate::util::EcoString;
|
||||||
@ -95,7 +96,7 @@ impl Green {
|
|||||||
offset: usize,
|
offset: usize,
|
||||||
parent_mode: NodeMode,
|
parent_mode: NodeMode,
|
||||||
outermost: bool,
|
outermost: bool,
|
||||||
) -> Result<(), bool> {
|
) -> bool {
|
||||||
match self {
|
match self {
|
||||||
Green::Node(n) => Rc::make_mut(n).incremental_int(
|
Green::Node(n) => Rc::make_mut(n).incremental_int(
|
||||||
edit,
|
edit,
|
||||||
@ -105,7 +106,7 @@ impl Green {
|
|||||||
parent_mode,
|
parent_mode,
|
||||||
outermost,
|
outermost,
|
||||||
),
|
),
|
||||||
Green::Token(_) => Err(false),
|
Green::Token(_) => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,7 +222,6 @@ impl GreenNode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.incremental_int(src, replace, replacement_len, 0, NodeMode::Markup, true)
|
self.incremental_int(src, replace, replacement_len, 0, NodeMode::Markup, true)
|
||||||
.is_ok()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn incremental_int(
|
fn incremental_int(
|
||||||
@ -232,7 +232,7 @@ impl GreenNode {
|
|||||||
mut offset: usize,
|
mut offset: usize,
|
||||||
parent_mode: NodeMode,
|
parent_mode: NodeMode,
|
||||||
outermost: bool,
|
outermost: bool,
|
||||||
) -> Result<(), bool> {
|
) -> bool {
|
||||||
let kind = self.kind().clone();
|
let kind = self.kind().clone();
|
||||||
let mode = kind.mode().apply(parent_mode);
|
let mode = kind.mode().apply(parent_mode);
|
||||||
eprintln!("in {:?} (mode {:?})", kind, mode);
|
eprintln!("in {:?} (mode {:?})", kind, mode);
|
||||||
@ -248,7 +248,7 @@ impl GreenNode {
|
|||||||
let old_len = child.len();
|
let old_len = child.len();
|
||||||
// First, we try if the child has another, more specific applicable child.
|
// First, we try if the child has another, more specific applicable child.
|
||||||
if !kind.incremental_safety().unsafe_interior() {
|
if !kind.incremental_safety().unsafe_interior() {
|
||||||
match child.incremental_int(
|
if child.incremental_int(
|
||||||
src,
|
src,
|
||||||
replace,
|
replace,
|
||||||
replacement_len,
|
replacement_len,
|
||||||
@ -256,14 +256,11 @@ impl GreenNode {
|
|||||||
kind.mode().child_mode(),
|
kind.mode().child_mode(),
|
||||||
i == last && outermost,
|
i == last && outermost,
|
||||||
) {
|
) {
|
||||||
Ok(_) => {
|
eprintln!("child success");
|
||||||
eprintln!("child success");
|
let new_len = child.len();
|
||||||
let new_len = child.len();
|
self.data.set_len(self.data.len() + new_len - old_len);
|
||||||
self.data.set_len(self.data.len() + new_len - old_len);
|
self.erroneous = self.children.iter().any(|x| x.erroneous());
|
||||||
return Ok(());
|
return true;
|
||||||
}
|
|
||||||
Err(b) if b => return Err(false),
|
|
||||||
_ => {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -274,8 +271,8 @@ impl GreenNode {
|
|||||||
.reparsing_function(mode.child_mode().as_token_mode())
|
.reparsing_function(mode.child_mode().as_token_mode())
|
||||||
{
|
{
|
||||||
Ok(p) => p,
|
Ok(p) => p,
|
||||||
Err(policy) => {
|
_ => {
|
||||||
return Err(policy == IncrementalSafety::VeryUnsafe);
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
loop_result =
|
loop_result =
|
||||||
@ -296,20 +293,33 @@ impl GreenNode {
|
|||||||
} else {
|
} else {
|
||||||
// No child fully contains the replacement.
|
// No child fully contains the replacement.
|
||||||
eprintln!("no child match");
|
eprintln!("no child match");
|
||||||
return Err(false);
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
eprintln!("aquired function, policy {:?}", policy);
|
eprintln!("aquired function, policy {:?}", policy);
|
||||||
|
|
||||||
let src_span = child_span.inserted(replace, replacement_len);
|
let src_span = child_span.inserted(replace, replacement_len);
|
||||||
|
let recompile_range = if policy == IncrementalSafety::AtomicPrimary {
|
||||||
|
src_span.start .. src.len()
|
||||||
|
} else {
|
||||||
|
src_span.to_range()
|
||||||
|
};
|
||||||
|
|
||||||
let new_children =
|
let new_children = if let Some(new_children) =
|
||||||
if let Some(new_children) = func(&src[src_span.to_range()], child_at_start) {
|
func(&src[recompile_range], child_at_start)
|
||||||
|
{
|
||||||
|
if policy != IncrementalSafety::AtomicPrimary
|
||||||
|
|| new_children.iter().map(Green::len).sum::<usize>() == src_span.len()
|
||||||
|
{
|
||||||
new_children
|
new_children
|
||||||
} else {
|
} else {
|
||||||
eprintln!("function failed");
|
eprintln!("wrong atomic len");
|
||||||
return Err(false);
|
return false;
|
||||||
};
|
}
|
||||||
|
} else {
|
||||||
|
eprintln!("function failed");
|
||||||
|
return false;
|
||||||
|
};
|
||||||
let child_mode =
|
let child_mode =
|
||||||
self.children[child_idx].kind().mode().child_mode().as_token_mode();
|
self.children[child_idx].kind().mode().child_mode().as_token_mode();
|
||||||
eprintln!("child mode {:?}", child_mode);
|
eprintln!("child mode {:?}", child_mode);
|
||||||
@ -325,7 +335,7 @@ impl GreenNode {
|
|||||||
eprintln!("must be a single replacement");
|
eprintln!("must be a single replacement");
|
||||||
if new_children.len() != 1 {
|
if new_children.len() != 1 {
|
||||||
eprintln!("not a single replacement");
|
eprintln!("not a single replacement");
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if match policy {
|
if match policy {
|
||||||
@ -337,7 +347,7 @@ impl GreenNode {
|
|||||||
} {
|
} {
|
||||||
if self.children[child_idx].kind() != new_children[0].kind() {
|
if self.children[child_idx].kind() != new_children[0].kind() {
|
||||||
eprintln!("not the same kind");
|
eprintln!("not the same kind");
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -351,7 +361,7 @@ impl GreenNode {
|
|||||||
.any(|x| matches!(x, NodeKind::Error(ErrorPos::End, _)))
|
.any(|x| matches!(x, NodeKind::Error(ErrorPos::End, _)))
|
||||||
{
|
{
|
||||||
eprintln!("unclosed node");
|
eprintln!("unclosed node");
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the neighbor invariants are still true.
|
// Check if the neighbor invariants are still true.
|
||||||
@ -362,7 +372,7 @@ impl GreenNode {
|
|||||||
&& !new_children[0].kind().is_whitespace()
|
&& !new_children[0].kind().is_whitespace()
|
||||||
{
|
{
|
||||||
eprintln!("left whitespace missing");
|
eprintln!("left whitespace missing");
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -379,10 +389,10 @@ impl GreenNode {
|
|||||||
|
|
||||||
match child.kind().incremental_safety() {
|
match child.kind().incremental_safety() {
|
||||||
IncrementalSafety::EnsureAtStart if !new_at_start => {
|
IncrementalSafety::EnsureAtStart if !new_at_start => {
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
IncrementalSafety::EnsureNotAtStart if new_at_start => {
|
IncrementalSafety::EnsureNotAtStart if new_at_start => {
|
||||||
return Err(false);
|
return false;
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
@ -396,8 +406,9 @@ impl GreenNode {
|
|||||||
let new_len: usize = new_children.iter().map(Green::len).sum();
|
let new_len: usize = new_children.iter().map(Green::len).sum();
|
||||||
|
|
||||||
self.children.splice(child_idx .. child_idx + 1, new_children);
|
self.children.splice(child_idx .. child_idx + 1, new_children);
|
||||||
|
self.erroneous = self.children.iter().any(|x| x.erroneous());
|
||||||
self.data.set_len(self.data.len + new_len - old_len);
|
self.data.set_len(self.data.len + new_len - old_len);
|
||||||
Ok(())
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1008,28 +1019,41 @@ impl NodeKind {
|
|||||||
IncrementalSafety,
|
IncrementalSafety,
|
||||||
> {
|
> {
|
||||||
let policy = self.incremental_safety();
|
let policy = self.incremental_safety();
|
||||||
if policy.unsafe_interior() {
|
if policy.is_unsafe() {
|
||||||
return Err(policy);
|
return Err(policy);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mode = self.mode();
|
let mode = self.mode();
|
||||||
|
let is_code = mode == NodeMode::Universal && parent_mode == TokenMode::Code
|
||||||
|
|| mode == NodeMode::Code;
|
||||||
if mode == NodeMode::Code && policy == IncrementalSafety::UnsafeLayer {
|
if mode == NodeMode::Code && policy == IncrementalSafety::UnsafeLayer {
|
||||||
return Err(policy);
|
return Err(policy);
|
||||||
}
|
}
|
||||||
|
|
||||||
if mode != NodeMode::Markup
|
if is_code && policy == IncrementalSafety::AtomicPrimary {
|
||||||
&& parent_mode == TokenMode::Code
|
|
||||||
&& policy == IncrementalSafety::AtomicPrimary
|
|
||||||
{
|
|
||||||
return Ok((parse_atomic, policy));
|
return Ok((parse_atomic, policy));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if policy == IncrementalSafety::SameKind
|
||||||
|
|| (policy == IncrementalSafety::SameKindInCode && is_code)
|
||||||
|
{
|
||||||
|
let parser: fn(&str, bool) -> _ = match self {
|
||||||
|
NodeKind::Template => parse_template,
|
||||||
|
NodeKind::Block => parse_block,
|
||||||
|
NodeKind::LineComment | NodeKind::BlockComment => parse_comment,
|
||||||
|
_ => return Err(policy),
|
||||||
|
};
|
||||||
|
|
||||||
|
return Ok((parser, policy));
|
||||||
|
}
|
||||||
|
|
||||||
let parser: fn(&str, bool) -> _ = match mode {
|
let parser: fn(&str, bool) -> _ = match mode {
|
||||||
NodeMode::Code => parse_code,
|
|
||||||
NodeMode::Markup if self == &Self::Markup => parse_markup,
|
NodeMode::Markup if self == &Self::Markup => parse_markup,
|
||||||
NodeMode::Markup => parse_markup_elements,
|
NodeMode::Markup => parse_markup_elements,
|
||||||
NodeMode::Universal if parent_mode == TokenMode::Code => parse_code,
|
NodeMode::Universal if parent_mode == TokenMode::Markup => {
|
||||||
NodeMode::Universal => parse_markup_elements,
|
parse_markup_elements
|
||||||
|
}
|
||||||
|
_ => return Err(policy),
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok((parser, policy))
|
Ok((parser, policy))
|
||||||
@ -1093,7 +1117,7 @@ impl NodeKind {
|
|||||||
| Self::Set
|
| Self::Set
|
||||||
| Self::Import
|
| Self::Import
|
||||||
| Self::Include
|
| Self::Include
|
||||||
| Self::From => IncrementalSafety::VeryUnsafe,
|
| Self::From => IncrementalSafety::Unsafe,
|
||||||
|
|
||||||
// This is a backslash followed by a space. But changing it to
|
// This is a backslash followed by a space. But changing it to
|
||||||
// anything else is fair game.
|
// anything else is fair game.
|
||||||
@ -1347,14 +1371,19 @@ pub enum IncrementalSafety {
|
|||||||
/// Changing an unsafe node or any of its children will trigger undefined
|
/// Changing an unsafe node or any of its children will trigger undefined
|
||||||
/// behavior. Change the parents instead.
|
/// behavior. Change the parents instead.
|
||||||
Unsafe,
|
Unsafe,
|
||||||
/// Its unsafe for two!
|
|
||||||
VeryUnsafe,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IncrementalSafety {
|
impl IncrementalSafety {
|
||||||
pub fn unsafe_interior(&self) -> bool {
|
pub fn unsafe_interior(&self) -> bool {
|
||||||
match self {
|
match self {
|
||||||
Self::Unsafe | Self::VeryUnsafe => true,
|
Self::Unsafe => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_unsafe(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::UnsafeLayer | Self::Unsafe => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user