13 references to tempName
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
2861var remainingValues = state.RemainingValues.Select(kvp => $"{tempName(kvp.Key)}:{kvp.Value}"); 2894var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}"); 2915return $"t{tempIdentifier(a)}={a.Kind}({tempName(a.Input)} as {a.Type})"; 2917return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Field.Name})"; 2919return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})"; 2921return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])"; 2923return $"{e.Kind}({tempName(e.Target)}<--{tempName(e.Input)})"; 2925return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)})"; 2927return $"?{d.Kind}({tempName(d.Input)} is {b.Type})"; 2929return $"?{d.Kind}({tempName(d.Input)} == {v.Value})"; 2939return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.Value})"; 2941return $"?{d.Kind}({tempName(d.Input)})";