13 references to tempName
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
2830var remainingValues = state.RemainingValues.Select(kvp => $"{tempName(kvp.Key)}:{kvp.Value}"); 2863var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}"); 2884return $"t{tempIdentifier(a)}={a.Kind}({tempName(a.Input)} as {a.Type})"; 2886return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Field.Name})"; 2888return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})"; 2890return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])"; 2892return $"{e.Kind}({tempName(e.Target)}<--{tempName(e.Input)})"; 2894return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)})"; 2896return $"?{d.Kind}({tempName(d.Input)} is {b.Type})"; 2898return $"?{d.Kind}({tempName(d.Input)} == {v.Value})"; 2908return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.Value})"; 2910return $"?{d.Kind}({tempName(d.Input)})";