summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-03-11 12:22:27 +0100
committerLaurenz <laurmaedje@gmail.com>2022-03-11 12:22:27 +0100
commit5ce2a006b6d45d29be15e4562ae3ab4fc1b8e97c (patch)
tree454b25e04530adcdf08a161e1ab09abb33c0644c /src/syntax/mod.rs
parente6b532391deb1e30dc356c4d20dd48199f748f29 (diff)
Consistent block naming
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs92
1 files changed, 46 insertions, 46 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index 85f2013c..a3393eda 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -481,14 +481,14 @@ impl ExactSizeIterator for Children<'_> {}
/// the parser.
#[derive(Debug, Clone, PartialEq)]
pub enum NodeKind {
- /// A left square bracket: `[`.
- LeftBracket,
- /// A right square bracket: `]`.
- RightBracket,
/// A left curly brace: `{`.
LeftBrace,
/// A right curly brace: `}`.
RightBrace,
+ /// A left square bracket: `[`.
+ LeftBracket,
+ /// A right square bracket: `]`.
+ RightBracket,
/// A left round parenthesis: `(`.
LeftParen,
/// A right round parenthesis: `)`.
@@ -642,30 +642,30 @@ pub enum NodeKind {
Fraction(f64),
/// A quoted string: `"..."`.
Str(EcoString),
+ /// A code block: `{ let x = 1; x + 2 }`.
+ CodeBlock,
+ /// A template block: `[*Hi* there!]`.
+ TemplateBlock,
+ /// A grouped expression: `(1 + 2)`.
+ GroupExpr,
/// An array expression: `(1, "hi", 12cm)`.
- Array,
+ ArrayExpr,
/// A dictionary expression: `(thickness: 3pt, pattern: dashed)`.
- Dict,
+ DictExpr,
/// A named pair: `thickness: 3pt`.
Named,
- /// A template expression: `[*Hi* there!]`.
- Template,
- /// A grouped expression: `(1 + 2)`.
- Group,
- /// A block expression: `{ let x = 1; x + 2 }`.
- Block,
/// A unary operation: `-x`.
- Unary,
+ UnaryExpr,
/// A binary operation: `a + b`.
- Binary,
+ BinaryExpr,
/// An invocation of a function: `f(x, y)`.
- Call,
+ CallExpr,
/// A function call's argument list: `(x, y)`.
CallArgs,
/// Spreaded arguments or a parameter sink: `..x`.
Spread,
/// A closure expression: `(x, y) => z`.
- Closure,
+ ClosureExpr,
/// A closure's parameters: `(x, y)`.
ClosureParams,
/// A with expression: `f with (x, y: 1)`.
@@ -724,16 +724,16 @@ pub enum ErrorPos {
}
impl NodeKind {
- /// Whether this is some kind of bracket.
- pub fn is_bracket(&self) -> bool {
- matches!(self, Self::LeftBracket | Self::RightBracket)
- }
-
/// Whether this is some kind of brace.
pub fn is_brace(&self) -> bool {
matches!(self, Self::LeftBrace | Self::RightBrace)
}
+ /// Whether this is some kind of bracket.
+ pub fn is_bracket(&self) -> bool {
+ matches!(self, Self::LeftBracket | Self::RightBracket)
+ }
+
/// Whether this is some kind of parenthesis.
pub fn is_paren(&self) -> bool {
matches!(self, Self::LeftParen | Self::RightParen)
@@ -782,10 +782,10 @@ impl NodeKind {
| Self::List
| Self::Raw(_)
| Self::Math(_) => Some(TokenMode::Markup),
- Self::Template
+ Self::TemplateBlock
| Self::Space(_)
- | Self::Block
| Self::Ident(_)
+ | Self::CodeBlock
| Self::LetExpr
| Self::SetExpr
| Self::ShowExpr
@@ -794,7 +794,7 @@ impl NodeKind {
| Self::WhileExpr
| Self::ForExpr
| Self::ImportExpr
- | Self::Call
+ | Self::CallExpr
| Self::IncludeExpr
| Self::LineComment
| Self::BlockComment
@@ -808,10 +808,10 @@ impl NodeKind {
/// A human-readable name for the kind.
pub fn as_str(&self) -> &'static str {
match self {
- Self::LeftBracket => "opening bracket",
- Self::RightBracket => "closing bracket",
Self::LeftBrace => "opening brace",
Self::RightBrace => "closing brace",
+ Self::LeftBracket => "opening bracket",
+ Self::RightBracket => "closing bracket",
Self::LeftParen => "opening paren",
Self::RightParen => "closing paren",
Self::Star => "star",
@@ -883,18 +883,18 @@ impl NodeKind {
Self::Percentage(_) => "percentage",
Self::Fraction(_) => "`fr` value",
Self::Str(_) => "string",
- Self::Array => "array",
- Self::Dict => "dictionary",
+ Self::CodeBlock => "code block",
+ Self::TemplateBlock => "template block",
+ Self::GroupExpr => "group",
+ Self::ArrayExpr => "array",
+ Self::DictExpr => "dictionary",
Self::Named => "named argument",
- Self::Template => "template",
- Self::Group => "group",
- Self::Block => "block",
- Self::Unary => "unary expression",
- Self::Binary => "binary expression",
- Self::Call => "call",
+ Self::UnaryExpr => "unary expression",
+ Self::BinaryExpr => "binary expression",
+ Self::CallExpr => "call",
Self::CallArgs => "call arguments",
Self::Spread => "parameter sink",
- Self::Closure => "closure",
+ Self::ClosureExpr => "closure",
Self::ClosureParams => "closure parameters",
Self::WithExpr => "`with` expression",
Self::LetExpr => "`let` expression",
@@ -932,10 +932,10 @@ impl Hash for NodeKind {
fn hash<H: Hasher>(&self, state: &mut H) {
std::mem::discriminant(self).hash(state);
match self {
- Self::LeftBracket => {}
- Self::RightBracket => {}
Self::LeftBrace => {}
Self::RightBrace => {}
+ Self::LeftBracket => {}
+ Self::RightBracket => {}
Self::LeftParen => {}
Self::RightParen => {}
Self::Star => {}
@@ -1007,18 +1007,18 @@ impl Hash for NodeKind {
Self::Percentage(v) => v.to_bits().hash(state),
Self::Fraction(v) => v.to_bits().hash(state),
Self::Str(v) => v.hash(state),
- Self::Array => {}
- Self::Dict => {}
+ Self::CodeBlock => {}
+ Self::TemplateBlock => {}
+ Self::GroupExpr => {}
+ Self::ArrayExpr => {}
+ Self::DictExpr => {}
Self::Named => {}
- Self::Template => {}
- Self::Group => {}
- Self::Block => {}
- Self::Unary => {}
- Self::Binary => {}
- Self::Call => {}
+ Self::UnaryExpr => {}
+ Self::BinaryExpr => {}
+ Self::CallExpr => {}
Self::CallArgs => {}
Self::Spread => {}
- Self::Closure => {}
+ Self::ClosureExpr => {}
Self::ClosureParams => {}
Self::WithExpr => {}
Self::LetExpr => {}