Skip to content

Commit

Permalink
Fix clippy hints
Browse files Browse the repository at this point in the history
  • Loading branch information
BinderDavid committed May 12, 2024
1 parent 6084454 commit db25b9e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ where
/// let mut files = Files::new();
/// let file_id = files.add("test", source);
///
/// assert_eq!(files.source_span(file_id), Span::from_str(source));
/// assert_eq!(files.source_span(file_id), Span::from_string(source));
/// ```
pub fn source_span(&self, file_id: FileId) -> Span {
self.get(file_id).source_span()
Expand Down Expand Up @@ -355,7 +355,7 @@ where
}

pub fn source_span(&self) -> Span {
Span::from_str(self.source.as_ref())
Span::from_string(self.source.as_ref())
}

pub fn source_slice(&self, span: Span) -> Result<&str, Error> {
Expand Down
5 changes: 5 additions & 0 deletions src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ impl LineIndex {
}
}

#[allow(clippy::derivable_impls)]
impl Default for LineIndex {
fn default() -> LineIndex {
LineIndex(0)
Expand Down Expand Up @@ -82,6 +83,7 @@ impl fmt::Display for LineNumber {
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct LineOffset(pub RawOffset);

#[allow(clippy::derivable_impls)]
impl Default for LineOffset {
fn default() -> LineOffset {
LineOffset(0)
Expand Down Expand Up @@ -125,6 +127,7 @@ impl ColumnIndex {
}
}

#[allow(clippy::derivable_impls)]
impl Default for ColumnIndex {
fn default() -> ColumnIndex {
ColumnIndex(0)
Expand Down Expand Up @@ -167,6 +170,7 @@ impl fmt::Display for ColumnNumber {
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct ColumnOffset(pub RawOffset);

#[allow(clippy::derivable_impls)]
impl Default for ColumnOffset {
fn default() -> ColumnOffset {
ColumnOffset(0)
Expand Down Expand Up @@ -198,6 +202,7 @@ impl ByteIndex {
}
}

#[allow(clippy::derivable_impls)]
impl Default for ByteIndex {
fn default() -> ByteIndex {
ByteIndex(0)
Expand Down
4 changes: 2 additions & 2 deletions src/span.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ impl Span {
/// ```rust
/// use codespan::{ByteIndex, Span};
///
/// let span = Span::from_str("hello");
/// let span = Span::from_string("hello");
///
/// assert_eq!(span, Span::new(0, 5));
/// ```
pub fn from_str(s: &str) -> Span {
pub fn from_string(s: &str) -> Span {
Span::new(0, s.len() as u32)
}

Expand Down

0 comments on commit db25b9e

Please sign in to comment.