Deal with the effects of keywords

This commit is contained in:
Martin Haug 2021-11-08 12:01:35 +01:00
parent 0663758fbb
commit 9141cba6a9
4 changed files with 121 additions and 49 deletions

View File

@ -29,7 +29,7 @@ pub fn parse(src: &str) -> Rc<GreenNode> {
pub fn parse_atomic(src: &str, _: bool) -> Option<Vec<Green>> {
let mut p = Parser::new(src, TokenMode::Code);
primary(&mut p, true).ok()?;
p.eject()
p.eject_partial()
}
/// 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()
}
/// Parse some code. Returns `Some` if all of the input was consumed.
pub fn parse_code(src: &str, _: bool) -> Option<Vec<Green>> {
let mut p = Parser::new(src, TokenMode::Code);
expr_list(&mut p);
/// Parse a template literal. Returns `Some` if all of the input was consumed.
pub fn parse_template(source: &str, _: bool) -> Option<Vec<Green>> {
let mut p = Parser::new(source, TokenMode::Code);
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()
}
@ -742,3 +764,14 @@ fn body(p: &mut Parser) -> ParseResult {
}
Ok(())
}
/// Parse a comment.
fn comment(p: &mut Parser) -> ParseResult {
match p.peek() {
Some(NodeKind::LineComment | NodeKind::BlockComment) => {
p.eat();
Ok(())
}
_ => Err(()),
}
}

View File

@ -95,6 +95,12 @@ impl<'s> Parser<'s> {
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.
pub fn eof(&self) -> bool {
self.eof

View File

@ -558,11 +558,15 @@ mod tests {
// Test type invariants.
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", true);
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("{\nf()\n//g(a)\n}", 6 .. 8, "", true);
test("{(1, 2)}", 1 .. 1, "while ", true);
// 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(r#"{"hi"}"#, 4 .. 5, "c", false);
@ -571,7 +575,7 @@ mod tests {
test(r"{{let x = z}; a = 1} b", 6 .. 6, "//", false);
// these appearantly works but the assertion fails.
// test(r#"a ```typst hello``` b"#, 16 .. 17, "", false);
// test(r#"a ```typst hello```"#, 16 .. 17, "", true);
test(r#"a ```typst hello``` b"#, 16 .. 17, "", false);
test(r#"a ```typst hello```"#, 16 .. 17, "", true);
}
}

View File

@ -16,7 +16,8 @@ use self::ast::{MathNode, RawNode, TypedNode};
use crate::diag::Error;
use crate::geom::{AngularUnit, LengthUnit};
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::util::EcoString;
@ -95,7 +96,7 @@ impl Green {
offset: usize,
parent_mode: NodeMode,
outermost: bool,
) -> Result<(), bool> {
) -> bool {
match self {
Green::Node(n) => Rc::make_mut(n).incremental_int(
edit,
@ -105,7 +106,7 @@ impl Green {
parent_mode,
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)
.is_ok()
}
fn incremental_int(
@ -232,7 +232,7 @@ impl GreenNode {
mut offset: usize,
parent_mode: NodeMode,
outermost: bool,
) -> Result<(), bool> {
) -> bool {
let kind = self.kind().clone();
let mode = kind.mode().apply(parent_mode);
eprintln!("in {:?} (mode {:?})", kind, mode);
@ -248,7 +248,7 @@ impl GreenNode {
let old_len = child.len();
// First, we try if the child has another, more specific applicable child.
if !kind.incremental_safety().unsafe_interior() {
match child.incremental_int(
if child.incremental_int(
src,
replace,
replacement_len,
@ -256,14 +256,11 @@ impl GreenNode {
kind.mode().child_mode(),
i == last && outermost,
) {
Ok(_) => {
eprintln!("child success");
let new_len = child.len();
self.data.set_len(self.data.len() + new_len - old_len);
return Ok(());
}
Err(b) if b => return Err(false),
_ => {}
eprintln!("child success");
let new_len = child.len();
self.data.set_len(self.data.len() + new_len - old_len);
self.erroneous = self.children.iter().any(|x| x.erroneous());
return true;
}
}
@ -274,8 +271,8 @@ impl GreenNode {
.reparsing_function(mode.child_mode().as_token_mode())
{
Ok(p) => p,
Err(policy) => {
return Err(policy == IncrementalSafety::VeryUnsafe);
_ => {
return false;
}
};
loop_result =
@ -296,20 +293,33 @@ impl GreenNode {
} else {
// No child fully contains the replacement.
eprintln!("no child match");
return Err(false);
return false;
};
eprintln!("aquired function, policy {:?}", policy);
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 =
if let Some(new_children) = func(&src[src_span.to_range()], child_at_start) {
let new_children = if let Some(new_children) =
func(&src[recompile_range], child_at_start)
{
if policy != IncrementalSafety::AtomicPrimary
|| new_children.iter().map(Green::len).sum::<usize>() == src_span.len()
{
new_children
} else {
eprintln!("function failed");
return Err(false);
};
eprintln!("wrong atomic len");
return false;
}
} else {
eprintln!("function failed");
return false;
};
let child_mode =
self.children[child_idx].kind().mode().child_mode().as_token_mode();
eprintln!("child mode {:?}", child_mode);
@ -325,7 +335,7 @@ impl GreenNode {
eprintln!("must be a single replacement");
if new_children.len() != 1 {
eprintln!("not a single replacement");
return Err(false);
return false;
}
if match policy {
@ -337,7 +347,7 @@ impl GreenNode {
} {
if self.children[child_idx].kind() != new_children[0].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, _)))
{
eprintln!("unclosed node");
return Err(false);
return false;
}
// Check if the neighbor invariants are still true.
@ -362,7 +372,7 @@ impl GreenNode {
&& !new_children[0].kind().is_whitespace()
{
eprintln!("left whitespace missing");
return Err(false);
return false;
}
}
@ -379,10 +389,10 @@ impl GreenNode {
match child.kind().incremental_safety() {
IncrementalSafety::EnsureAtStart if !new_at_start => {
return Err(false);
return false;
}
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();
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);
Ok(())
true
}
}
@ -1008,28 +1019,41 @@ impl NodeKind {
IncrementalSafety,
> {
let policy = self.incremental_safety();
if policy.unsafe_interior() {
if policy.is_unsafe() {
return Err(policy);
}
let mode = self.mode();
let is_code = mode == NodeMode::Universal && parent_mode == TokenMode::Code
|| mode == NodeMode::Code;
if mode == NodeMode::Code && policy == IncrementalSafety::UnsafeLayer {
return Err(policy);
}
if mode != NodeMode::Markup
&& parent_mode == TokenMode::Code
&& policy == IncrementalSafety::AtomicPrimary
{
if is_code && policy == IncrementalSafety::AtomicPrimary {
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 {
NodeMode::Code => parse_code,
NodeMode::Markup if self == &Self::Markup => parse_markup,
NodeMode::Markup => parse_markup_elements,
NodeMode::Universal if parent_mode == TokenMode::Code => parse_code,
NodeMode::Universal => parse_markup_elements,
NodeMode::Universal if parent_mode == TokenMode::Markup => {
parse_markup_elements
}
_ => return Err(policy),
};
Ok((parser, policy))
@ -1093,7 +1117,7 @@ impl NodeKind {
| Self::Set
| Self::Import
| Self::Include
| Self::From => IncrementalSafety::VeryUnsafe,
| Self::From => IncrementalSafety::Unsafe,
// This is a backslash followed by a space. But changing it to
// anything else is fair game.
@ -1347,14 +1371,19 @@ pub enum IncrementalSafety {
/// Changing an unsafe node or any of its children will trigger undefined
/// behavior. Change the parents instead.
Unsafe,
/// Its unsafe for two!
VeryUnsafe,
}
impl IncrementalSafety {
pub fn unsafe_interior(&self) -> bool {
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,
}
}