13 references to tempName
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
2806var remainingValues = state.RemainingValues.Select(kvp => $"{tempName(kvp.Key)}:{kvp.Value}"); 2839var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}"); 2860return $"t{tempIdentifier(a)}={a.Kind}({tempName(a.Input)} as {a.Type})"; 2862return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Field.Name})"; 2864return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})"; 2866return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])"; 2868return $"{e.Kind}({tempName(e.Target)}<--{tempName(e.Input)})"; 2870return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)})"; 2872return $"?{d.Kind}({tempName(d.Input)} is {b.Type})"; 2874return $"?{d.Kind}({tempName(d.Input)} == {v.Value})"; 2884return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.Value})"; 2886return $"?{d.Kind}({tempName(d.Input)})";