Added LDM notes for April 19th, 2021.

This commit is contained in:
Fredric Silberberg 2021-04-20 15:16:53 -07:00
parent 99ee2e877f
commit e8b27ef36f
No known key found for this signature in database
GPG key ID: BB6144C8A0CEC8EE
2 changed files with 59 additions and 5 deletions

View file

@ -0,0 +1,52 @@
# C# Language Design Meeting for April 19th, 2021
## Agenda
1. [Improved interpolated strings](#improved-interpolated-strings)
## Quote of the Day
- "I'm glad you had a stomachache here so I don't have to"
## Discussion
### Improved interpolated strings
https://github.com/dotnet/csharplang/issues/4487
Today, we spent the full meeting digging into the pros and cons of conditional evaluation of interpolation holes, to ensure that we feel
comfortable with the changes doing so will bring. The real challenge here is that conditional evaluation of interpolation holes will break
with current mental models of interpolated strings: today, interpolated string holes are unconditionally evaluated in lexical order, and
the way the proposal is designed makes it possible for a library update to change whether the expressions in an interpolation hole is
evaluated or not. While library updates can always bring changes in behavior, this is the type of change that is currently only possible
by a library adding the `Conditional` attribute onto a method or changing the type of an exception being thrown, causing a catch handler
to no longer be hit. Adding a new instance method that is preferred over an extension method is similar, but except in rare cases involving
user-defined conversions this can't actually affect the expressions in the method body itself.
If we proceed with conditional evaluation, user education will be a key component. The proposal does not involve conditional evaluation when
the interpolated string literal is used directly as a `string`, but other types can introduce this. If a user is confused by this behavior,
we need a clear thing we can point out to say "this is why you're seeing the current behavior." One potential way to do this is by introducing
a specific syntax to enable conditional interpolation hole evaluation, something like `$?"{ConditionallyEvaluated()}"`. With such a syntax,
we would never conditionally evaluate the holes unless the string were marked with `$?` or `@$?`. However, this immediately becomes a concern
for libraries that want to introduce conditional evaluation: presumably they were making that decision for a good reason. A logging library
would want this to just work, and every library that uses the feature would presumably then also need to make an analyzer to go along with the
feature to ensure their customers are actually using it.
We also considered the benefits that partial evaluation gives the user. An important goal for C# features is that users don't adopt the
feature then immediately switch to something else because it introduces performance issues. Patterns are a good example of doing this right:
the compiler generates code that is usually as good, if not better, than the code the user would write by hand to match a pattern. Today's
interpolated strings, on the other hand, do _not_ do this today. They box value types, don't work with spans, and generate array garbage that
can't be elided. We want interpolated strings to be better: using the language feature should generate code that is just as performant as
you can get manually today. Conditional evaluation is a big part of this: both with the up front check, and with the intervening checks on
each `Append` call, we can ensure that a simple line of C# generates code that is as good as manual checks.
A good analogy to think about for concerns about conditional evaluation is in `struct`s: if C# were to introduce value types today, would
we be concerned that we need to call out the copies everywhere they can occur? Or would we simply accept that, yes, struct copies can happen
and that it's fine. Yes, behavior could change inside method bodies on upgrading a library, but that can happen in a number of ways with any
library upgrade today. New instance methods can be introduced that cause extension methods to longer be chosen, libraries can introduce new
conversions, new exceptions can be thrown/existing exceptions can be no longer thrown. While is another change that can happen, we don't think
it's substantially different enough to warrant concern.
#### Conclusion
We accept conditional evaluation of interpolation holes as written in the spec.

View file

@ -16,19 +16,21 @@
## Apr 21, 2021
- Inferred lambda / method group delegate type: potential breaking change (Chuck): https://github.com/dotnet/csharplang/issues/4674
- Interpolated strings: more open questions (Fred, Stephen)
- Improved interpolated strings (Fred, Stephen)
- Record-structs multiple small clarifications (Julien): https://github.com/dotnet/roslyn/issues/51199
## Apr 19, 2021
- More open questions in interpolated strings (Fred, Stephen, Kathleen)
## Apr 14, 2021
# C# Language Design Notes for 2021
Overview of meetings and agendas for 2021
## Apr 19, 2021
[C# Language Design Notes for April 19th, 2021](https://github.com/dotnet/csharplang/blob/master/meetings/2021/LDM-2021-04-19.md)
1. Improved interpolated strings
## Apr 14, 2021
[C# Language Design Notes for April 14th, 2021](https://github.com/dotnet/csharplang/blob/master/meetings/2021/LDM-2021-04-14.md)