Skip to content

Commit

Permalink
Momentarily back out Awaitable rename
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed May 22, 2024
1 parent 96029a7 commit 973457f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/code_info/t_atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,11 @@ impl TAtomic {
match self {
TAtomic::TArraykey { .. } => "arraykey".to_string(),
TAtomic::TAwaitable { value, .. } => {
refs.push(StrId::AWAITABLE);
let mut str = String::new();
str += "Awaitable<";
str += "HH\\Awaitable<";
str += value
.get_id_with_refs(interner, &mut vec![], indent)
.get_id_with_refs(interner, refs, indent)
.as_str();
str += ">";
str
Expand Down

0 comments on commit 973457f

Please sign in to comment.