13 references to tempName
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
1648var remainingValues = state.RemainingValues.Select(kvp => $"{tempName(kvp.Key)}:{kvp.Value}"); 1681var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}"); 1702return $"t{tempIdentifier(a)}={a.Kind}({tempName(a.Input)} as {a.Type})"; 1704return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Field.Name})"; 1706return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})"; 1708return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])"; 1710return $"{e.Kind}({tempName(e.Target)}<--{tempName(e.Input)})"; 1712return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)})"; 1714return $"?{d.Kind}({tempName(d.Input)} is {b.Type})"; 1716return $"?{d.Kind}({tempName(d.Input)} == {v.Value})"; 1726return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.Value})"; 1728return $"?{d.Kind}({tempName(d.Input)})";