13 references to tempName
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
1683var remainingValues = state.RemainingValues.Select(kvp => $"{tempName(kvp.Key)}:{kvp.Value}"); 1716var bindings = cd.Bindings.Select(bpb => $"{(bpb.VariableAccess is BoundLocal l ? l.LocalSymbol.Name : "<var>")}={tempName(bpb.TempContainingValue)}"); 1737return $"t{tempIdentifier(a)}={a.Kind}({tempName(a.Input)} as {a.Type})"; 1739return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Field.Name})"; 1741return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}.{e.Property.Name})"; 1743return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])"; 1745return $"{e.Kind}({tempName(e.Target)}<--{tempName(e.Input)})"; 1747return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)})"; 1749return $"?{d.Kind}({tempName(d.Input)} is {b.Type})"; 1751return $"?{d.Kind}({tempName(d.Input)} == {v.Value})"; 1761return $"?{d.Kind}({tempName(d.Input)} {operatorName} {r.Value})"; 1763return $"?{d.Kind}({tempName(d.Input)})";