Skip to content

Instantly share code, notes, and snippets.

@munificent
Created March 14, 2019 22:25
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save munificent/ddc4e79ace90718643c60837270c409a to your computer and use it in GitHub Desktop.
Save munificent/ddc4e79ace90718643c60837270c409a to your computer and use it in GitHub Desktop.

In this post I'm going to talk about a handful of language changes we're working on in Dart right now to make collection literals more powerful. By "collection literals", I mean the built-in syntax for creating lists, maps, and sets:

https://gist.github.com/38b367755324c032cd1e9387cd6b7ff8

If you aren't writing Dart code today, this may not be super relevant to you and your Life Goals, but I hope I can entice you to keep reading anyway. I think the features are interesting in their own right, and the execution model that underlies them might stretch your brain in useful and/or engaging ways. I always think it's fun to learn about new language stuff, even in languages I don't currently use.

How Flutter Authors UI

If you heard anything about Dart in the past year, it was probably in the context of Flutter. If you haven't heard of it, Flutter is a UI framework for building multi-platform mobile apps. I can't do it justice here, but click the link and it will answer every question in your heart. (Well, at least every question regarding what Flutter is. It probably won't tell you why that high school crush never called you back.)

A key choice any UI framework needs to make is how the basic visual UI elements —buttons, colors, text, layout, etc.—are created. Do you author these in some sort of separate "template" or "markup" format or right in executable code where the UI's behavior is defined? Every fifteen years or so, the industry flips on which answer is the right one.

Angular and most web frameworks follow in the footsteps of HTML and use templates. React puts the UI right inside your JavaScript, but also adds an embedded DSL called JSX to make it look like HTML. Trying to have its cake and eat it too, I guess, though not everyone would describe HTML as particularly dessert-like.

Flutter puts the UI right into your Dart code, using normal Dart expression syntax. Behold:

https://gist.github.com/c81661aee0a9c74e2dc5c059048ccd72

Everything after that return keyword is one big nested expression that produces a chunk of user interface. Using Dart for this has a handful of material benefits:

  • There's only one language to learn: Dart. Since Dart was designed to be familiar to people coming from other languages, that's hopefully not too difficult.

  • You can use all of the abstraction features of a general-purpose programming language when building your UI. Hoist pieces out into reusable functions. Give those functions parameters to vary the generated UI. Store things in local variables. You do you.

  • You never hit an expressiveness wall and have to port to a different language. If you've ever used a declarative language, you've probably run into the situation where you hit the limit of what it can actually express. At that point, you either abandon what you were trying to do, or laboriously rewrite the whole thing in a lower level, usually imperative language. Since you're already in a full-featured language with Dart, you never hit that wall and your UI code can smoothly grow in sophistication.

The main challenge, of course, and the reason why people make declarative languages in the first place, is that defining stuff in an imperative language can be really tedious and difficult to read.

Imagine that instead of this little bit of HTML:

https://gist.github.com/66dfecfe156b8dbcbfc55c0b0888210b

You had to write something like:

https://gist.github.com/d4838abac5870f65b5ac26cdcbad7248

Fortunately, modern languages and APIs aren't quite that low level. Expressions are actually pretty declarative. While the above code is gnarly, this is about on par with HTML:

https://gist.github.com/718cfce4b8145f6f8d33ca1879d2687b

The modern reactive paradigm where you "build" your UI by constructing it from scratch as a single expression gets you pretty far. The relevant part of the Flutter example up there is just:

https://gist.github.com/1a554edd0ecdc3fb3ef225806bdb9d51

It's got parentheses and square brackets instead of angle brackets, but is otherwise not too far from a "markup" language. It's surprising how well this works. Dart's syntax is based on JavaScript, which got it from Java, which got it from C. Along the way, we added the square bracket list literal syntax and named parameters, but those are fairly minor.

C was designed for implementing command-line operating systems on the PDP-11. The fact that its notation scales not too badly to building graphical UIs on mobile devices is either a testament to Ritchie's design taste, or our collective Stockholm Syndrome around C syntax. Either way, it works... mostly.

In the example here, there's no interesting runtime logic required to build the UI. Everything nicely fits into a single nested expression. But let's say, for whatever reason, you don't want to show the "This is Flutter" part of the text on Tuesdays. (Maybe you need to make room on screen for the "Taco Tuesday!" banner.)

There are a few ways to express that, but none of them feel as nice and declarative as the above example. Here's one:

https://gist.github.com/3b9406e2d2340f9e5ed5f19eceacd70c

We're a lot closer to the nasty low-level imperative code that drives people to using templates. If you look at real Flutter code today, you sadly see a lot that looks like this. So, about a year ago, the Flutter team asked us on Dart to come up with language changes to make UI code written in Dart easier to write, read, and maintain.

"UI as Code"

We called this initiative "UI as code", since it's about building your UI using code. But the ultimate goal was language features that were generally applicable to as many Dart programs, Flutter or not, as possible. (If you want a lot more background, here's a long motivation doc I wrote.)

After exploring a bunch of options, we decided to focus on a few targeted improvements around collection literals. This may not seem as sexy as jamming something like JSX into Dart (not that I'm entirely ruling that out), but it has the advantage of being much easier for users to incrementally take advantage of in their code.

Just making list literals groovier might seem to have, uh, limited impact. But, if you look at Flutter UI code like the above, it's basically a big tree of constructor calls and list literals. List literals are a large fraction of the territory. (Heck, entire languages have been designed around them.) If you dig into examples where it feels like you should be able to write something declaratively but instead have to do a bunch of gross imperative mutation, it's very often around lists.

If we can make collections better, we can make a lot of code better. To that end, we're adding three new features:

Spreads

Often, when you build a list of widgets, some of those widgets are already in some other list. Here's a bit of Flutter code:

https://gist.github.com/f7f1c49ff40ecaa31ebd3c1889a86e21

The buildTab2Conversation() method returns a list of widgets that we want to surround with the header and footer. Having to build the resulting list imperatively is a real drag. It forces the code to read "backwards" where you see a bunch of stuff mucking around with the children before you get to the code to see what they are the children of.

Dart has this feature called method cascades that helps somewhat. Those let you stuff a mutating method call in the middle of an expression while yielding the original object. With that, you get:

https://gist.github.com/6d23e48ed9c18174e686436ad876ebb8

That's kind of better, but it's still pretty awkward. That trailing ..add() to append a single item is particularly egregious. You can probably guess how we fixed this since a number of other languages already have the same solution. (At least 90% of language design is figuring out which features to borrow from other languages.) We introduced a new syntax called spreads.

Inside a collection literal, a spread unpacks another collection and inserts its contents directly in place. For example:

https://gist.github.com/a23259b20aebfce6fc2300e1305af106

The ... before the list element causes its elements to be unpacked and inserted into the surrounding list. This is the same syntax JavaScript uses. Python, Ruby, and a few others use a prefix * for the same thing, but we felt that didn't stand out visually enough. With this feature, the Flutter example becomes:

https://gist.github.com/89b80c304433516069748f62c52c0d09

I believe this is a real improvement. All of the children of the list view are nestled snug in the one list literal. This looks nicer, and also plays nicer with type inference. With all of the elements inside the list, we can use all of them when inferring the list's type.

I'm showing a Flutter example here, but I actually spent a lot of time combing through a huge corpus of Dart code to see where this syntax would be useful and it comes into play all over the place. In particular, code that builds lists of command line arguments for invoking other programs really benefits from spreads.

Elements

Before I get into the last two features, I want to dig into what a spread actually is. It will seem like I'm belaboring the point, but I promise being clear on this will be helpful later. Here's a leading question: is a spread an expression?

It seems like one, because it appears in a list literal in a place where an expression is expected:

https://gist.github.com/970b086f3e292d35b632bb4c23c526cb

Like an expression, you evaluate it and it produces some data. Maybe it's an expression that evaluates to an Iterable object? But, wait, that doesn't make sense. That's what the expression inside the spread does. If you just want an expression that evaluates to an Iterable, there's no need to put the ... before it.

A spread doesn't evaluate to a single iterable object, it unpacks that object and evaluates to the series of objects produced by the iterable. It wouldn't be useful to then repack that back into some new object. But an expression always evaluates to a single object.

If a spread was an expression, what would it mean to use one in other places where an expression is allowed?

https://gist.github.com/82d517e40442118c83bcea53d0dafe62

What would this do? It doesn't make sense to store the entire Iterable as an object in wat. If you wanted that, you could just omit the ... entirely. The answer is that spreads aren't expressions. They are a different kind of syntactic category. Dart, like many languages, already has two big syntax groups: statements and expressions.

Statements are executed but don't produce any result value. Instead, they are expected to have some useful side effect. They can't be used in any context where a value is needed because it won't give you one. That's why, say, this is forbidden:

https://gist.github.com/67141d2cc20ca589bb2ff399aa50f5cf

A for statement doesn't produce a value, so it doesn't make sense to stuff one in a variable initializer. There are languages that unify expressions and statements and allow code like this. They define each statement to execute in some way and also produce a value. But Dart isn't one of those languages.

Expressions evaluate to a single result value. You can use them in places where a value is useful. There are also "expression statements"—an expression followed by a semicolon—which are statements that contain a single expression. Handy since many expressions do also happen to have side effects and are useful even when their result isn't needed.

A spread is neither of those. A spread can evaluate to zero values (if you spread an empty collection), one value, or many. It's its own kind of thing. A good name for this category would be "generator". My model for this comes from Icon where every expression can be a generator like this. But Dart already has generator functions so I didn't want to overload the term.

A spread can only appear in a place that can gracefully handle receiving zero or more values. Without completely overhauling the language's execution model and turning it into Icon (which I find strangely appealing, but probably not practical...), there aren't too many places that fit that constraint. Basically collection literals and maybe positional argument lists. (I wrote a proposal for the latter, but it's quite complex so we aren't doing it, at least not right now.)

That leaves inside the body of collection literals. Based on that, I call these "elements". An element is a piece of code that when evaluated produces zero or more values. Those values are then interpolated in place into the surrounding context where they appear. So, in a list, they become a series of elements in the new list. In a map, they become a series of key/value pairs. You get the idea.

The body of a collection literal can thus contain either expressions or elements. Allowing two categories is a little confusing, but fortunately we can simplify this by saying that a collection only contains elements. Then we define an "expression element" to be an element containing a single expression. The element always produces one result—the value of the expression. Sort of like the element equivalent of an expression statement.

Right, so that's where we are. We've changed collections to contain elements instead of expressions and defined two kinds of elements, spreads and expression elements. To evaluate a collection literal, you walk the elements, evaluate each one, and concatenate (or union in the case of a set) all of the resulting objects.

With that model in mind, we can walk through the other two new features:

Collection If

Write any Flutter code and you pretty quickly run into cases where the tree of widgets you want to build changes based on some condition. Say we have:

https://gist.github.com/3b36a7788a480d85b84ecff28bd8be8c

Later, we decide that we want to use a different search button on Android. You can already do that using a conditional expression:

https://gist.github.com/0948f20c9426670b6a5a042c1c0d0cda

This works OK, though I've never found C's conditional operator very easy to read. Often, though, you don't want to swap out a widget based on a condition, you want to simply omit one. Let's say you don't want to show a search box on Android at all. Today, Flutter users tend to use one of two patterns. This is one:

https://gist.github.com/7c781e0f6740c5ffd20c19fcb09b4194

It forces you to rearrange the entire function by hoisting the child list out and building it imperatively before you use it. The other pattern looks like:

https://gist.github.com/6844b1878f54468b99d6b4b760f75582

This uses a conditional expression which sometimes produces a null and then filters that null out the resulting list. Props to whoever came up with this, but it's not something any user should have to write to accomplish such a simple task. Simple problems should have simple solutions, and small conceptual changes to your program shouldn't require large textual changes.

Here's the new thing. For the first example where we want a different button on Android, it looks like this:

https://gist.github.com/184f7495bb1fee56a2512650b15e51c9

Instead of ?:, it uses the familiar if and else syntax. This is literally just a few tokens different from the existing conditional expression, so it doesn't seem to carry its weight. The more interesting case is when we want to omit the button on Android:

https://gist.github.com/16e8f899a9d0fdc3e35b759ad8dbc01b

Note there's no else clause. Both of these examples look pretty similar to languages like Ruby where if is an expression. But an expression must always evaluate to a value, even when the condition is false. In Ruby, in that case, it implicitly evaluates to nil.

But that's not what you want here. You don't want to end up with a null element in your list of child widgets. That's why the conditional expression example up there had to use the annoying where() to filter it out. Fortunately, that's not a problem here. Because if inside a collection isn't an expression. It's an element.

Now you see why I was dragging you through all that stuff with spreads. Elements give us the foundation to have an if syntax that lets you completely omit an element from a collection. The if element produces a single value if the condition is true, or if there is an else case. If the condition is false and there is no else clause, it simply produces no values at all.

I think this behavior is really useful, but it's also confusing if you look at the code and expect if to act like a simple expression.

Collection For

The previous feature takes an existing bit of Dart statement syntax and repurposes it to do something useful in the context of a collection. Are there any other statement forms worth taking?

Most don't make sense. Sticking a return statement in there wouldn't do anything useful since it would just exit the surrounding function. while isn't very useful either. In order to exit a while loop, the body typically contains a break, return, or some kind of side effect like an assignment. But that implies the body contains statements, which isn't what we want.

I dug through a bunch of collection literals in existing code looking for patterns I thought could be improved by new syntax. The main one, by far, was if. But I saw a number of places that I thought could be improved by for. Here's a slightly cleaned up example of some real code I found:

https://gist.github.com/3557cae66fd914500063b68dbb5d6f2f

All of the command.add() stuff feels needlessly imperative. If we allow for loops inside a collection literal, this becomes:

https://gist.github.com/39ee81867e6d49c508b763163c6491eb

Composing Elements

Given that we are already adding spreads, the for syntax doesn't seem very compelling. Couldn't you accomplish the same thing using spread with some combination of higher-order methods on iterables? Yes, you can. You'd get something like:

https://gist.github.com/cc294d7c4ee3c8621f98022b6a94eb96

This does work and is fine for some use cases. Let's consider a slightly different example. Say we only want to include an entrypoint if a corresponding JSON file exists. That means we're not doing a simple 1-1 mapping. Using only spreads, we get something like:

https://gist.github.com/bef258cf691fae5d52459cc640eb6cb7

This works too. But it starts to get harder and harder to translate the simple "if the file exists, do this" logic to the stream-based higher-order functional style. There's always some combination of map(), where() and maybe transform() that does the job, but it can feel like translating a haiku into Reverse Polish Notation.

There is a cleaner solution, and it involves a key question: What is the body of these new if and for elements? In the examples I've shown you so far, it's always an expression. But there's no need to restrict it to just that. Instead, we allow any element to go there. In other words, all three of these new features can be composed freely. The above code can be expressed like:

https://gist.github.com/c0b8e4625749175af0044bc7e1b0c50f

A simple if inside a for, just like you'd do if you were writing imperative statements. The semantics for composing elements turn out to be pretty obvious:

  • An if element produces all of the values produced by its then clause if the condition is true, otherwise it produces all of the elements of the "else" clause. If there is no "else", it produces no elements.

  • A for element produces the concatenation of all of the values produced by its body element each time the body is executed.

This enables some patterns that I think are cool. An obvious problem you run into is wanting to include or omit multiple values based on a single condition. So, say in our previous example we wanted to skip both the title and the search box on Android. You can do that by wrapping a spread in an if:

https://gist.github.com/61266258f922ea017032cdc9591d93a8

The spread is necessary here to unpack the inner list. Otherwise, when not on Android, you'd include the entire inner list as a single value. (We considered implicitly flattening in cases like this based on static types, but that gets really dubious when you think about how things like a List<Object> should behave.)

You can think of spreading a list literal as the element equivalent of a curly block for statements—it lets you put multiple elements in a place where only one is expected. (If you're familiar with the comma operator, that's essentially the analogous form for expressions. Parallels everywhere.)

Using for and if in an empty collection literal gives you a syntax not too far from the special "list comprehension" syntax supported by some other languages like Python:

https://gist.github.com/24b7ee421cfde933a7e81a9c54a5bc16

You can even nest for:

https://gist.github.com/7afc3200c0d117f0d7374de5a931acb2

This builds a list containing the Cartesian product of all of the points in the given hor and vert rectangle.

Also, these new features compose across collection types. I've been using lists as the example because they come up most often, but all of these features work inside maps and sets too. The only difference is that with sets, duplicates get implicitly discarded. And in maps, instead of having primitive expression elements, the basic element is a key/value pair. For example, this:

https://gist.github.com/c71b4e483602a4dce2c9783fc41be878

Can be rewritten as:

https://gist.github.com/336dab4f509c307ed671e97ae91a6cef

One real concern I have with all of these features is that we're essentially giving you new ways to express things you can already express today. This has a cost because it means users need to spend brain juice deciding which feature to use, and when reading others code, they may spend time questioning why one option was chosen over the other. There are simply more features to learn and the language is bigger.

I spent a lot of time agonizing over this. Sometimes, simply doing nothing is the best design. Simplicity has a lot of value, and it's rare that you get the chance to make a language simpler over time. However, after looking at a lot of code and working with a delightful UX researcher on a study, we're fairly confident that these features are lightweight and useful enough to carry their weight.

As with any language change, you never really know how it will work out until it gets into the hands of users. These features should fall into your grasp in the upcoming Dart 2.3 release, and I'm really excited to see what you make of them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment