Give more specific error messages (#881)

This commit is contained in:
Leedehai 2023-04-19 07:26:55 -04:00 committed by GitHub
parent e4b09d417e
commit dc3017955a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 66 additions and 48 deletions

View File

@ -158,7 +158,13 @@ impl Args {
/// argument. /// argument.
pub fn finish(self) -> SourceResult<()> { pub fn finish(self) -> SourceResult<()> {
if let Some(arg) = self.items.first() { if let Some(arg) = self.items.first() {
bail!(arg.span, "unexpected argument"); bail!(
arg.span,
match &arg.name {
Some(name) => eco_format!("unexpected argument: {}", name),
_ => eco_format!("unexpected argument"),
}
)
} }
Ok(()) Ok(())
} }

View File

@ -2,7 +2,7 @@ use std::collections::BTreeMap;
use std::fmt::{self, Debug, Formatter}; use std::fmt::{self, Debug, Formatter};
use std::hash::Hash; use std::hash::Hash;
use ecow::EcoString; use ecow::{eco_format, EcoString};
use super::{Library, Value}; use super::{Library, Value};
use crate::diag::StrResult; use crate::diag::StrResult;
@ -42,7 +42,7 @@ impl<'a> Scopes<'a> {
.chain(self.scopes.iter().rev()) .chain(self.scopes.iter().rev())
.chain(self.base.map(|base| base.global.scope())) .chain(self.base.map(|base| base.global.scope()))
.find_map(|scope| scope.get(var)) .find_map(|scope| scope.get(var))
.ok_or("unknown variable")?) .ok_or(eco_format!("unknown variable: {}", var))?)
} }
/// Try to access a variable immutably in math. /// Try to access a variable immutably in math.
@ -51,7 +51,7 @@ impl<'a> Scopes<'a> {
.chain(self.scopes.iter().rev()) .chain(self.scopes.iter().rev())
.chain(self.base.map(|base| base.math.scope())) .chain(self.base.map(|base| base.math.scope()))
.find_map(|scope| scope.get(var)) .find_map(|scope| scope.get(var))
.ok_or("unknown variable")?) .ok_or(eco_format!("unknown variable: {}", var))?)
} }
/// Try to access a variable mutably. /// Try to access a variable mutably.
@ -61,8 +61,8 @@ impl<'a> Scopes<'a> {
.find_map(|scope| scope.get_mut(var)) .find_map(|scope| scope.get_mut(var))
.ok_or_else(|| { .ok_or_else(|| {
match self.base.and_then(|base| base.global.scope().get(var)) { match self.base.and_then(|base| base.global.scope().get(var)) {
Some(_) => "cannot mutate a constant", Some(_) => eco_format!("cannot mutate a constant: {}", var),
_ => "unknown variable", _ => eco_format!("unknown variable: {}", var),
} }
})? })?
} }

View File

@ -217,7 +217,7 @@ impl Lexer<'_> {
.and_then(std::char::from_u32) .and_then(std::char::from_u32)
.is_none() .is_none()
{ {
return self.error("invalid unicode escape sequence"); return self.error(eco_format!("invalid unicode codepoint: {}", hex));
} }
return SyntaxKind::Escape; return SyntaxKind::Escape;
@ -585,10 +585,10 @@ impl Lexer<'_> {
SyntaxKind::Float SyntaxKind::Float
} else { } else {
return self.error(match base { return self.error(match base {
2 => "invalid binary number", 2 => eco_format!("invalid binary number: 0b{}", number),
8 => "invalid octal number", 8 => eco_format!("invalid octal number: 0o{}", number),
16 => "invalid hexadecimal number", 16 => eco_format!("invalid hexadecimal number: 0x{}", number),
_ => "invalid number", _ => eco_format!("invalid number: {}", number),
}); });
}; };
@ -600,7 +600,7 @@ impl Lexer<'_> {
suffix, suffix,
"pt" | "mm" | "cm" | "in" | "deg" | "rad" | "em" | "fr" | "%" "pt" | "mm" | "cm" | "in" | "deg" | "rad" | "em" | "fr" | "%"
) { ) {
return self.error("invalid number suffix"); return self.error(eco_format!("invalid number suffix: {}", suffix));
} }
SyntaxKind::Numeric SyntaxKind::Numeric

View File

@ -1046,8 +1046,8 @@ fn validate_dict(p: &mut Parser, m: Marker) {
None => first.text().clone(), None => first.text().clone(),
}; };
if !used.insert(key) { if !used.insert(key.clone()) {
first.convert_to_error("duplicate key"); first.convert_to_error(eco_format!("duplicate key: {}", key));
child.make_erroneous(); child.make_erroneous();
} }
} }
@ -1073,13 +1073,19 @@ fn validate_params(p: &mut Parser, m: Marker) {
match child.kind() { match child.kind() {
SyntaxKind::Ident => { SyntaxKind::Ident => {
if !used.insert(child.text().clone()) { if !used.insert(child.text().clone()) {
child.convert_to_error("duplicate parameter"); child.convert_to_error(eco_format!(
"duplicate parameter: {}",
child.text()
));
} }
} }
SyntaxKind::Named => { SyntaxKind::Named => {
let Some(within) = child.children_mut().first_mut() else { return }; let Some(within) = child.children_mut().first_mut() else { return };
if !used.insert(within.text().clone()) { if !used.insert(within.text().clone()) {
within.convert_to_error("duplicate parameter"); within.convert_to_error(eco_format!(
"duplicate parameter: {}",
within.text()
));
child.make_erroneous(); child.make_erroneous();
} }
} }
@ -1101,7 +1107,10 @@ fn validate_params(p: &mut Parser, m: Marker) {
continue; continue;
} }
if !used.insert(within.text().clone()) { if !used.insert(within.text().clone()) {
within.convert_to_error("duplicate parameter"); within.convert_to_error(eco_format!(
"duplicate parameter: {}",
within.text()
));
child.make_erroneous(); child.make_erroneous();
} }
} }
@ -1122,7 +1131,10 @@ fn validate_args(p: &mut Parser, m: Marker) {
if child.kind() == SyntaxKind::Named { if child.kind() == SyntaxKind::Named {
let Some(within) = child.children_mut().first_mut() else { return }; let Some(within) = child.children_mut().first_mut() else { return };
if !used.insert(within.text().clone()) { if !used.insert(within.text().clone()) {
within.convert_to_error("duplicate argument"); within.convert_to_error(eco_format!(
"duplicate argument: {}",
within.text()
));
child.make_erroneous(); child.make_erroneous();
} }
} }

View File

@ -224,7 +224,7 @@
// Error: 4-6 unexpected end of block comment // Error: 4-6 unexpected end of block comment
#(1*/2) #(1*/2)
// Error: 6-8 invalid number suffix // Error: 6-8 invalid number suffix: u
#(1, 1u 2) #(1, 1u 2)
// Error: 3-4 unexpected comma // Error: 3-4 unexpected comma

View File

@ -61,7 +61,7 @@
// Block directly in markup also creates a scope. // Block directly in markup also creates a scope.
#{ let x = 1 } #{ let x = 1 }
// Error: 7-8 unknown variable // Error: 7-8 unknown variable: x
#test(x, 1) #test(x, 1)
--- ---
@ -73,7 +73,7 @@
#test(a, 1) #test(a, 1)
// Error: 3-4 unknown variable // Error: 3-4 unknown variable: b
#{b} #{b}
--- ---
@ -83,7 +83,7 @@
test(b, 1) test(b, 1)
}} }}
// Error: 2-3 unknown variable // Error: 2-3 unknown variable: b
#b #b
--- ---
@ -106,13 +106,13 @@
// Content blocks also create a scope. // Content blocks also create a scope.
#[#let x = 1] #[#let x = 1]
// Error: 2-3 unknown variable // Error: 2-3 unknown variable: x
#x #x
--- ---
// Multiple unseparated expressions in one line. // Multiple unseparated expressions in one line.
// Error: 2-4 invalid number suffix // Error: 2-4 invalid number suffix: u
#1u #1u
// Should output `1`. // Should output `1`.

View File

@ -44,7 +44,7 @@
} }
--- ---
// Error: 26-30 duplicate argument // Error: 26-30 duplicate argument: font
#set text(font: "Arial", font: "Helvetica") #set text(font: "Arial", font: "Helvetica")
--- ---

View File

@ -106,7 +106,7 @@
--- ---
// Don't leak environment. // Don't leak environment.
#{ #{
// Error: 16-17 unknown variable // Error: 16-17 unknown variable: x
let func() = x let func() = x
let x = "hi" let x = "hi"
func() func()
@ -141,22 +141,22 @@
test(greet("Typst"), "Hey, Typst!") test(greet("Typst"), "Hey, Typst!")
test(greet("Typst", birthday: true), "Happy Birthday, Typst!") test(greet("Typst", birthday: true), "Happy Birthday, Typst!")
// Error: 23-35 unexpected argument // Error: 23-35 unexpected argument: whatever
test(greet("Typst", whatever: 10)) test(greet("Typst", whatever: 10))
} }
--- ---
// Error: 11-12 duplicate parameter // Error: 11-12 duplicate parameter: x
#let f(x, x) = none #let f(x, x) = none
--- ---
// Error: 14-15 duplicate parameter // Error: 14-15 duplicate parameter: a
// Error: 23-24 duplicate parameter // Error: 23-24 duplicate parameter: b
// Error: 35-36 duplicate parameter // Error: 35-36 duplicate parameter: b
#let f(a, b, a: none, b: none, c, b) = none #let f(a, b, a: none, b: none, c, b) = none
--- ---
// Error: 13-14 duplicate parameter // Error: 13-14 duplicate parameter: a
#let f(a, ..a) = none #let f(a, ..a) = none
--- ---

View File

@ -56,11 +56,11 @@
#test(dict, (a: 3, b: 1)) #test(dict, (a: 3, b: 1))
--- ---
// Error: 24-29 duplicate key // Error: 24-29 duplicate key: first
#(first: 1, second: 2, first: 3) #(first: 1, second: 2, first: 3)
--- ---
// Error: 17-20 duplicate key // Error: 17-20 duplicate key: a
#(a: 1, "b": 2, "a": 3) #(a: 1, "b": 2, "a": 3)
--- ---

View File

@ -24,7 +24,7 @@
#include "modules/chap1.typ" #include "modules/chap1.typ"
// The variables of the file should not appear in this scope. // The variables of the file should not appear in this scope.
// Error: 2-6 unknown variable // Error: 2-6 unknown variable: name
#name #name
--- ---

View File

@ -42,5 +42,5 @@
#(numbers.sorted() = 1) #(numbers.sorted() = 1)
--- ---
// Error: 2-5 cannot mutate a constant // Error: 2-5 cannot mutate a constant: box
#box.push(1) #box.push(1)

View File

@ -97,7 +97,7 @@
} }
--- ---
// Error: 4-5 unknown variable // Error: 4-5 unknown variable: x
#((x) = "") #((x) = "")
--- ---
@ -110,15 +110,15 @@
#(not x = "a") #(not x = "a")
--- ---
// Error: 7-8 unknown variable // Error: 7-8 unknown variable: x
#(1 + x += 3) #(1 + x += 3)
--- ---
// Error: 3-4 unknown variable // Error: 3-4 unknown variable: z
#(z = 1) #(z = 1)
--- ---
// Error: 3-7 cannot mutate a constant // Error: 3-7 cannot mutate a constant: rect
#(rect = "hi") #(rect = "hi")
--- ---

View File

@ -116,11 +116,11 @@
#test(0xA + 0xa, 0x14) #test(0xA + 0xa, 0x14)
--- ---
// Error: 2-7 invalid binary number // Error: 2-7 invalid binary number: 0b123
#0b123 #0b123
--- ---
// Error: 2-8 invalid hexadecimal number // Error: 2-8 invalid hexadecimal number: 0x123z
#0x123z #0x123z
--- ---
@ -201,7 +201,7 @@
#(x += "thing") #test(x, "something") #(x += "thing") #test(x, "something")
--- ---
// Error: 3-6 cannot mutate a constant // Error: 3-6 cannot mutate a constant: box
#(box = 1) #(box = 1)
--- ---

View File

@ -15,7 +15,7 @@
--- ---
// Test with unnamed function. // Test with unnamed function.
// Error: 17-18 unknown variable // Error: 17-18 unknown variable: f
#let f = (n) => f(n - 1) #let f = (n) => f(n - 1)
#f(10) #f(10)

View File

@ -27,7 +27,7 @@ let f() , ; : | + - /= == 12 "string"
--- ---
// Unicode codepoint does not exist. // Unicode codepoint does not exist.
// Error: 1-11 invalid unicode escape sequence // Error: 1-11 invalid unicode codepoint: FFFFFF
\u{FFFFFF} \u{FFFFFF}
--- ---

View File

@ -56,5 +56,5 @@ Emoji: 🐪, 🌋, 🏞
#set text(size: 10pt, 12pt) #set text(size: 10pt, 12pt)
--- ---
// Error: 11-31 unexpected argument // Error: 11-31 unexpected argument: something
#set text(something: "invalid") #set text(something: "invalid")

View File

@ -54,5 +54,5 @@ Expanded by height.
--- ---
// Radius wins over width and height. // Radius wins over width and height.
// Error: 23-34 unexpected argument // Error: 23-34 unexpected argument: width
#circle(radius: 10pt, width: 50pt, height: 100pt, fill: eastern) #circle(radius: 10pt, width: 50pt, height: 100pt, fill: eastern)

View File

@ -35,5 +35,5 @@
--- ---
// Size wins over width and height. // Size wins over width and height.
// Error: 09-20 unexpected argument // Error: 09-20 unexpected argument: width
#square(width: 10cm, height: 20cm, size: 1cm, fill: rgb("eb5278")) #square(width: 10cm, height: 20cm, size: 1cm, fill: rgb("eb5278"))