mirror of
https://github.com/typst/typst
synced 2025-08-18 00:48:34 +08:00
Merge 39b3d94beecf9348b41b2983dd8c96e153b2555a into 0264534928864c7aed0466d670824ac0ce5ca1a8
This commit is contained in:
commit
e98011a62a
@ -85,6 +85,10 @@ impl Eval for ast::ModuleImport<'_> {
|
|||||||
source_span, "module name would not be a valid identifier";
|
source_span, "module name would not be a valid identifier";
|
||||||
hint: "you can rename the import with `as`",
|
hint: "you can rename the import with `as`",
|
||||||
),
|
),
|
||||||
|
Err(BareImportError::Keyword(name)) => bail!(
|
||||||
|
source_span, "module `{name}` would be overridden as a keyword";
|
||||||
|
hint: "you can rename the import with `as`",
|
||||||
|
),
|
||||||
// Bad package spec would have failed the import already.
|
// Bad package spec would have failed the import already.
|
||||||
Err(BareImportError::PackageInvalid) => unreachable!(),
|
Err(BareImportError::PackageInvalid) => unreachable!(),
|
||||||
}
|
}
|
||||||
|
@ -86,7 +86,7 @@ use ecow::EcoString;
|
|||||||
use unscanny::Scanner;
|
use unscanny::Scanner;
|
||||||
|
|
||||||
use crate::package::PackageSpec;
|
use crate::package::PackageSpec;
|
||||||
use crate::{is_ident, is_newline, Span, SyntaxKind, SyntaxNode};
|
use crate::{is_ident, is_keyword, is_newline, Span, SyntaxKind, SyntaxNode};
|
||||||
|
|
||||||
/// A typed AST node.
|
/// A typed AST node.
|
||||||
pub trait AstNode<'a>: Sized {
|
pub trait AstNode<'a>: Sized {
|
||||||
@ -2225,6 +2225,10 @@ impl<'a> ModuleImport<'a> {
|
|||||||
return Err(BareImportError::PathInvalid);
|
return Err(BareImportError::PathInvalid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if is_keyword(&name) {
|
||||||
|
return Err(BareImportError::Keyword(name));
|
||||||
|
}
|
||||||
|
|
||||||
Ok(name)
|
Ok(name)
|
||||||
}
|
}
|
||||||
_ => Err(BareImportError::Dynamic),
|
_ => Err(BareImportError::Dynamic),
|
||||||
@ -2242,13 +2246,15 @@ impl<'a> ModuleImport<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Reasons why a bare name cannot be determined for an import source.
|
/// Reasons why a bare name cannot be determined for an import source.
|
||||||
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
||||||
pub enum BareImportError {
|
pub enum BareImportError {
|
||||||
/// There is no statically resolvable binding name.
|
/// There is no statically resolvable binding name.
|
||||||
Dynamic,
|
Dynamic,
|
||||||
/// The import source is not a valid path or the path stem not a valid
|
/// The import source is not a valid path or the path stem not a valid
|
||||||
/// identifier.
|
/// identifier.
|
||||||
PathInvalid,
|
PathInvalid,
|
||||||
|
/// The import source is a valid path but the path stem is a keyword.
|
||||||
|
Keyword(EcoString),
|
||||||
/// The import source is not a valid package spec.
|
/// The import source is not a valid package spec.
|
||||||
PackageInvalid,
|
PackageInvalid,
|
||||||
}
|
}
|
||||||
|
@ -1063,6 +1063,12 @@ pub fn is_ident(string: &str) -> bool {
|
|||||||
.is_some_and(|c| is_id_start(c) && chars.all(is_id_continue))
|
.is_some_and(|c| is_id_start(c) && chars.all(is_id_continue))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Whether a string is a Typst keyword.
|
||||||
|
#[inline]
|
||||||
|
pub fn is_keyword(string: &str) -> bool {
|
||||||
|
keyword(string).is_some()
|
||||||
|
}
|
||||||
|
|
||||||
/// Whether a character can start an identifier.
|
/// Whether a character can start an identifier.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn is_id_start(c: char) -> bool {
|
pub fn is_id_start(c: char) -> bool {
|
||||||
|
@ -20,8 +20,8 @@ pub use self::file::FileId;
|
|||||||
pub use self::highlight::{highlight, highlight_html, Tag};
|
pub use self::highlight::{highlight, highlight_html, Tag};
|
||||||
pub use self::kind::SyntaxKind;
|
pub use self::kind::SyntaxKind;
|
||||||
pub use self::lexer::{
|
pub use self::lexer::{
|
||||||
is_id_continue, is_id_start, is_ident, is_newline, is_valid_label_literal_id,
|
is_id_continue, is_id_start, is_ident, is_keyword, is_newline,
|
||||||
link_prefix, split_newlines,
|
is_valid_label_literal_id, link_prefix, split_newlines,
|
||||||
};
|
};
|
||||||
pub use self::lines::Lines;
|
pub use self::lines::Lines;
|
||||||
pub use self::node::{LinkedChildren, LinkedNode, Side, SyntaxError, SyntaxNode};
|
pub use self::node::{LinkedChildren, LinkedNode, Side, SyntaxError, SyntaxNode};
|
||||||
|
@ -483,3 +483,8 @@ This is never reached.
|
|||||||
--- import-from-file-package-lookalike ---
|
--- import-from-file-package-lookalike ---
|
||||||
// Error: 9-28 file not found (searched at tests/suite/scripting/#test/mypkg:1.0.0)
|
// Error: 9-28 file not found (searched at tests/suite/scripting/#test/mypkg:1.0.0)
|
||||||
#import "#test/mypkg:1.0.0": *
|
#import "#test/mypkg:1.0.0": *
|
||||||
|
|
||||||
|
--- import-keyword ---
|
||||||
|
// Error: 9-26 module `set` would be overridden as a keyword
|
||||||
|
// Hint: 9-26 you can rename the import with `as`
|
||||||
|
#import "modules/set.typ"
|
||||||
|
1
tests/suite/scripting/modules/set.typ
Normal file
1
tests/suite/scripting/modules/set.typ
Normal file
@ -0,0 +1 @@
|
|||||||
|
// SKIP
|
Loading…
x
Reference in New Issue
Block a user