aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/exceptions/builtin_exceptions.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-17 14:02:13 -0500
committermat <github@matdoes.dev>2022-04-17 14:02:13 -0500
commita72a47ced76065caf739898954cd18edbc39174b (patch)
tree5526c7663f253bbd7c8318b9d98413f1f2074852 /azalea-brigadier/src/exceptions/builtin_exceptions.rs
parent4ff67d4917ce333232189e86aee09f2d82451fc6 (diff)
downloadazalea-drasl-a72a47ced76065caf739898954cd18edbc39174b.tar.xz
Rewrite brigadier
Diffstat (limited to 'azalea-brigadier/src/exceptions/builtin_exceptions.rs')
-rw-r--r--azalea-brigadier/src/exceptions/builtin_exceptions.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/azalea-brigadier/src/exceptions/builtin_exceptions.rs b/azalea-brigadier/src/exceptions/builtin_exceptions.rs
index 1533364b..5f2e1605 100644
--- a/azalea-brigadier/src/exceptions/builtin_exceptions.rs
+++ b/azalea-brigadier/src/exceptions/builtin_exceptions.rs
@@ -1,6 +1,6 @@
use std::fmt;
-use crate::{immutable_string_reader::ImmutableStringReader, message::Message};
+use crate::{message::Message, string_reader::StringReader};
use super::command_syntax_exception::CommandSyntaxException;
@@ -35,9 +35,9 @@ pub enum BuiltInExceptions {
ReaderExpectedBool,
ReaderExpectedSymbol { symbol: char },
- ReaderUnknownCommand,
- ReaderUnknownArgument,
- DusoatcgerExpectedArgumentSeparator,
+ DispatcherUnknownCommand,
+ DispatcherUnknownArgument,
+ DispatcherExpectedArgumentSeparator,
DispatcherParseException { message: String },
}
@@ -127,13 +127,13 @@ impl fmt::Debug for BuiltInExceptions {
write!(f, "Expected '{}'", symbol)
}
- BuiltInExceptions::ReaderUnknownCommand => {
+ BuiltInExceptions::DispatcherUnknownCommand => {
write!(f, "Unknown command")
}
- BuiltInExceptions::ReaderUnknownArgument => {
+ BuiltInExceptions::DispatcherUnknownArgument => {
write!(f, "Incorrect argument for command")
}
- BuiltInExceptions::DusoatcgerExpectedArgumentSeparator => {
+ BuiltInExceptions::DispatcherExpectedArgumentSeparator => {
write!(
f,
"Expected whitespace to end one argument, but found trailing data"
@@ -152,7 +152,7 @@ impl BuiltInExceptions {
CommandSyntaxException::create(self, message)
}
- pub fn create_with_context(self, reader: &dyn ImmutableStringReader) -> CommandSyntaxException {
+ pub fn create_with_context(self, reader: &StringReader) -> CommandSyntaxException {
let message = Message::from(format!("{:?}", self));
CommandSyntaxException::new(self, message, reader.string(), reader.cursor())
}