Skip to content

Commit

Permalink
🔥 Remove no longer used comment
Browse files Browse the repository at this point in the history
  • Loading branch information
AucaCoyan committed Dec 16, 2023
1 parent 07f5076 commit 8d8c2e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/formatting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ pub(crate) fn format_inner(contents: &[u8], _config: &Config) -> Vec<u8> {
FlatShape::InternalCall(declid) => {
trace!("Called Internal call with {declid}");
out = resolve_call(bytes, declid, out);
// make the def_name bool true if its a `def` keyword
after_a_def = declid == 5;
after_a_def = declid == DeclId::Def;
}
FlatShape::External => out = resolve_external(bytes, out),
FlatShape::ExternalArg | FlatShape::Signature | FlatShape::Keyword => {
Expand Down

0 comments on commit 8d8c2e5

Please sign in to comment.