Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Latest commit

 

History

History
949 lines (811 loc) · 44.9 KB

goals.md

File metadata and controls

949 lines (811 loc) · 44.9 KB

Goals

Living Document. J. S. Choi, 2018-12.

There are seventeen ordered goals that the smart step syntax tries to fulfill, which may be summarized,
“Don’t break my code,”
“Don’t make me overthink,”
“Don’t shoot me in the foot,”
“Make my code easier to read,”
and a few other goals.

“Don’t break my code.”

  1. Backward compatibility
  2. Zero runtime cost
  3. Forward compatibility

“Don’t make me overthink.”

  1. Syntactic locality
  2. Semantic clarity
  3. Expressive versatility
  4. Cyclomatic simplicity

“Don’t shoot me in the foot.”

  1. Simple scoping
  2. Opt-in behavior
  3. Static analyzability

“Make my code easier to read.”

  1. Untangled flow
  2. Distinguishability
  3. Terse parentheses
  4. Terse variables
  5. Terse function calls

Other

  1. Conceptual generality
  2. Human writability
  3. Novice learnability

“Don’t break my code.”

The syntax should not break any existing code; it should also be forward compatible with future code.

Backward compatibility

The syntax must avoid stepping on the toes of existing code, including but not limited to JavaScript libraries such as jQuery and Lodash. In particular, the topic reference should not be an existing identifier such as $ or _, which both may cause surprising results to a developer who adopts pipelines while also using a globally bound convenience variable. It is a common pattern to do this even without a library: var $ = document.querySelectorAll”. The silent shadowing of such outer-context variables may silently cause bugs, which may also be difficult to debug (see Expressive Versatility).

Nor can it cause previously valid code to become invalid. This includes, to a lesser extent, common nonstandard extensions to JavaScript: for instance, using <> for the topic reference would retroactively invalidate existing E4X and JSX code.

This proposal uses # for its topic reference. This is compatible with all known previous JavaScript code. ? and @ could be chosen instead, which are each also backwards compatible.

Zero runtime cost

This could be considered a specific type of backward compatibility. When translating old code into the new syntax, doing so should not cause unexpected performance regression. For instance, the new syntax should not require memory allocation for newly created functions that were not necessary in the old code. Instead, it should, at least theoretically, perform as well the old code did for both memory and CPU. And it should be able to do this without dramatically rearranging code logic or relying on hidden, uncontrollable compiler optimization.

For instance, in order to apply the syntax to the logic of an async functions, a hypothetical new pipeline syntax might not support using await in the same async context as the pipeline itself. Such a syntax would, for each of its pipelines’ steps, require inner async functions that would return wrapper promises and pass them between consecutive steps. Such an approach would be be unnecessarily expensive to naively evaluate for both CPU and memory. But inlining these async functions may be internally complicated, and such optimizations would be difficult for the developer to correctly predict and might differ widely between JavaScript engines.

Instead, this proposal’s use of a topic reference enables the zero-cost rewriting of any expression within the current environmental context, including await operations in async functions, without having to create unnecessary inner async functions, and without having to wrap values in unnecessary promises.

Forward compatibility

The syntax should not preclude other proposals: both already-proposed ECMAScript proposals, such as partial function application and private class fields – as well as the Additional Features of this proposal. The Core Proposal is forward compatible with all of these, especially because of its early errors.

“Don’t shoot me in the foot.”

The syntax should not be a footgun: it should not easy for a developer to accidentally shoot themselves in the foot with it. Lessons from the topic variables of other programming languages may be instructive in formulating these goals.

Opt-in behavior

The lexical topic is implicit, hidden state. State is intrinsically dangerous in that it may induce the developer to commit mode errors, later “surprising” the developer with unpredicted behavior. It should therefore not be easy for a developer to accidentally bind or use the topic. If the developer accidentally binds or uses the topic, any use of that reference could result in subtle, pernicious bugs.

The larger the probability that a developer will accidentally clobber or overwrite the topic, the less predictable their code becomes. It should not be easy to accidentally shadow a reference from an outer lexical scope.

The larger the probability that a developer accidentally uses the topic, the less predictable their code becomes. It should not be easy to accidentally use the current lexical scope’s topic. In particular, bare/tacit function calls that use the topic should not be easy to accidentally perform.

In this proposal, the developer therefore must explicitly opt into topic-using behavior, whether binding or using, by using the pipe operator |>. This includes Additional Feature TS, which requires the use of |>.

This is quite different than much prior art in other programming languages. Other languages frequently bind their topic references using numerous syntactic structures, with no way for the developer to opt out. In addition, bare/tacit function calls are easier to accidentally perform in some programming languages – making it more difficult to tell whether a bare identifier print is meant to be a simple variable reference or a bare function call on the topic value.

Simple scoping

It should not be easy to accidentally shadow a reference from an outer lexical scope. When the developer does so, any use of that reference could result in subtle, pernicious bugs.

The rules for where the topic is bound should be simple and consistent. It should be clear and obvious when a topic is bound and in what scope it exists. And forgetting these rules should result in early, compile-time errors, not subtle runtime bugs.

It should always be easy to find the origin of a topic binding, without looking deeply into the stack. Topic references are therefore bound only in the steps of pipelines, and they cannot be used within function, class, for, while, catch, and with statements (see Core Proposal). When the developer wishes to trace the origin of a topic binding, they may be certain that if they find any of such statements during their search, they have moved too far and should retrace their path for the topic binding.

This proposal’s topic references are different than much prior art in other programming languages. Other languages frequently use dynamic binding rather than lexical binding for their topic references.

Static analyzability

Early errors help the editing JavaScript developer avoid common footguns at compile time, such as preventing them from accidentally omitting a topic reference where they meant to put one. For instance, if x |> 3 were not an error, then it would be a useless operation and almost certainly not what the developer intended. Situations like these should be statically detectable and cause compile-time early errors.

The same preference for strict early errors is used by the class decorators proposal: see tc39/proposal-decorators#30, tc39/proposal-decorators#42, and tc39/proposal-decorators#60. Early errors also assist with forward compatibility, as changing a behavior from “throws” to “does something” is generally web compatible, though the reverse is not true.

“Don’t make me overthink.”

The syntax should not make a developer overthink about the syntax, rather than their product.

Syntactic locality

The syntax should minimize the parsing lookahead that the compiler must check. If the grammar makes garden-path syntax common, then this increases the dependency that pieces of code have on other code. This long lookahead in turn makes it more likely that the code will exhibit developer-unintended behavior.

This is true particularly for distinguishing between different styles of pipeline step syntax. A pipeline’s meaning would often be ambiguous between these styles – at least without checking the pipeline step carefully to see in which style it is written. And the pipeline step may be a very long expression.

By restricting the space of valid bare-style pipeline steps (that is, without topic references), the rule minimizes garden-path syntax that would otherwise be possible – such as value |> compose(f, g, h, i, j, k, #). Syntax becomes more locally readable. It becomes easier to reason about code without thinking about code elsewhere.

Semantic clarity

The syntax might be unambiguous, but its semantics can be more difficult to interpret.

For instance:

input |> object.method;

…may be clear enough.

It means:

object.method(input);

But:

input |> object.method(); 🚫

…is less clear.

It could reasonably mean either of these lines:

object.method(input);
object.method()(input);

Adding other arguments:

input |> object.method(x, y); 🚫

…makes it worse.

It could reasonably mean any of these lines:

object.method(input, x, y);
object.method(x, y, input);
object.method(x, y)(input);

And this is even worse:

input |> await object.method(x, y); 🚫

It could reasonably mean any of these lines:

await object.method(input, x, y);
await object.method(x, y, input);
await object.method(x, y)(input);
(await object.method(x, y))(input);

It is undesirable for the human reader to be uncertain which of multiple interpretations of a pipeline – all which are reasonable – is correct. It is both a distracting incidental cognitive burden and a potential source of developer error. The Zen of Python famously says, “Explicit is better than implicit,” for reasons such as these. And it is for these reasons that this proposal makes the unclear pipelines above early errors.

This pipeline:

input |> object.method;

…is a valid bare-style pipeline. Bare style is designed to be strictly simple: it must either be a simple reference or it is not in bare style.

object.method(input);

This:

input |> object.method(); 🚫

…is an invalid topic-style pipeline. It is in topic style because it is not a simple reference; it has parentheses. And it is invalid because it is in topic style yet it does not have a topic reference.

The writing developer is forced by the compiler to clarify their intended meaning, using a topic reference:

input |> object.method(#);
input |> object.method()(#);

The reading developer benefits from explicitness and clarity, without sacrificing the benefits of untangled flow that pipelines bring.

Adding other arguments:

input |> object.method(x, y); 🚫

…is the same. This is an invalid topic-style pipeline.

The writer must clarify which of these reasonable interpretations is correct:

input |> object.method(#, x, y);
input |> object.method(x, y, #);
input |> object.method(x, y)(#);

Both inserting the input as the first argument and inserting it as the last argument are reasonable interpretations, as evidenced by how other programming languages’ pipe operators variously do either. Or it could be a factory method that creates a function that is in turn to be called with a unary input argument.

Invalid topic-style pipeline:

input |> await object.method(x, y); 🚫

Valid topic-style pipelines:

input |> await object.method(#, x, y);
input |> await object.method(x, y, #);
input |> await object.method(x, y)(#);
input |> (await object.method(x, y))(#);

Expressive versatility

JavaScript is a language rich with expressions of numerous kinds, each of which may usefully transform data from one form to another. There is no single type of expression that forms a majority of used expressions.

  1. undefined and null.
  2. Boolean literals.
  3. String literals.
  4. Regular-expression literals.
  1. Template literals.
  2. Array literals.
  3. Object literals.
  1. Variable references.
  2. Property accessors.
  3. this.
  4. new.target.
  1. Arithmetic operations.
  2. Bitwise operations.
  3. Logical operations.
  1. Equality operations.
  2. instanceof and in operations.
  3. Conditional operations.
  1. Unary function calls.
  2. Unary constructor calls.
  3. N-ary function calls.
  4. N-ary constructor calls.
  5. super calls.
  1. Arrow functions.
  2. Function definitions.
  3. Generator definitions.
  1. Async-function definitions.
  2. Async-generator definitions.
  3. Class definitions.
  1. typeof operations.
  2. void expressions.
  3. await expressions.
  4. yield expressions.
  1. Function binding?

The goal of the pipe operator is to untangle deeply nested expressions into flat threads of postfix expressions. To limit it to only one type of expression, even a common type, truncates its benefits to that one type only and compromises its expressivity and versatility.

In particular, relying on immediately invoked function expressions (IIFEs) to accomodate non-unary function is insufficient for idiomatic JavaScript code. JavaScript functions have never fulfilled the Tennent correspondence principle. Several common types of expressions cannot be equivalently used within inner functions, particularly await and yield. In these frequent cases, attempting to replacing code with “equivalent” IIFEs may cause different behavior, may cause different performance behavior (see example in zero runtime cost), or may require dramatic rearrangement of logic to conserve the old code’s behavior.

It would be possible to add ad-hoc handling, for selected other expression types, to the operator’s grammar. This would expand its benefits to that type. However, this conflicts with the goal of cyclomatic simplicity, by adding complexity to the parsing process, proportional to the number of ad-hoc handled cases. It also does not fulfill this goal well either: excluding, perhaps arbitrarily, whatever classes its grammar’s branches do not handle.

Such new incidental complexity makes code less readable and distracts the developer from the program’s essential logic. A pipe operator that improves readability should be versatile (this goal) but conceptually and cyclomatically simple. Such an operator should be able to handle all expressions, in a single manner uniformly universally applicable to all expressions. It is the hope of this proposal’s authors that its smart step syntax fulfills both criteria.

Cyclomatic simplicity

Each edge case of the grammar increases the cyclomatic complexity of parsing the new syntax, increasing cognitive burden on both machine compiler and human reader in writing and reading code without error. If edge cases and branching are minimized, then the resulting syntax will be uniform and consistent. The reduced complexity would hopefully reduce the probability that the developer will misunderstand the code they read or write.

Similarly, reducing edge cases reduces the amount of trivia that a developer must learn and remember in order to use the syntax. The more uniform and simple the syntax’s rules, the more the developer may focus on the actual meaning of their code.

Both expressive versatility and simplicity are important components of [“don’t make me overthink”][], but they sometimes conflict with one another. When this happens, expressive versatility often wins: simplicity is important, but sometimes it may be traded off for increased expressiveness. For instance, terse function calls are important for tacit functional programming, one of the impetuses for the first pipe-operator proposal.

The pipe operator could be designed to support only topic style: that would require x |> f to be x |> f(#). But adding a bare style brings many expressive benefits for tacit functional programming: not just terse function calls but also the possibility of terse composition with Additional Feature PF.

But even with this tradeoff, not too much simplicity should be given up. The sacrifice of simplicity for bare style’s alternate mode can be minimized by ensuring that its parsing rules are very simple.

“Make my code easier to read.”

The new syntax should increase the human readability and writability of much common code. It should be simpler to read and comprehend. And it should be easier to compose and update. Otherwise, the new syntax would be useless.

Making JavaScript expressions more ergonomic for humans is the prime, original purpose of this proposal. To a computer, the form of complex expressions – whether as deeply nested groups or as flat threads of postfix steps – should not matter. But to a human, it can make a significant difference.

Untangled flow

When a human reads deeply nested groups of expressions – which are very common in JavaScript code – their attention must switch between the start and end of each nested expression. And these expressions will dramatically differ in length, depending on their level in the syntactic tree. To use the example above:

console.log(
  await stream.write(
    new User.Message(
      capitalize(
        doubledSay(
          (await promise)
            || throw new TypeError(`Invalid value from ${promise}`)
        )
      ) + '!')));

…the deep inner expression await promise is relatively short. In contrast, the shallow outer expression capitalize(doubledSay((await promise) || throw new TypeError(`Invalid value from ${promise}`))) + '!'`) is very long. Yet both are quite similar: they are transformations of a string into another. This insight is lost in the deeply nested noise.

With pipelines, the code forms a flat thread of postfix steps. It is much easier for a human to read and comprehend. Each of its steps are roughly the same length. In order to understand what occurs before a given step, one only need to scan left, rather than in both directions as the deeply nested tree would require. To read the whole thing, a reader may simply follow along left to right, not back and forth.

promise
|> await #
|> # || throw new TypeError()
|> doubleSay(#, ', ')
|> capitalize
|> # + '!'
|> new User.Message(#)
|> await stream.write(#)
|> console.log;

The introduction to this motivation section already explained much of the readability rationale.

Distinguishable punctuators

Another important aspect of code readability is the visual distinguishability of its most important words or symbols. Visually similar punctuators can distract or even mislead the human reader, as they attempt to figure out the true meaning of their code.

Any new punctuator should be easily distinguishable from existing symbols and should not be visually confusable with unrelated syntax. This is particularly true for choosing the topic-reference token, which would appear often in a wide variety of expressions. If the topic reference hypothetically were ? (and ?? and ??? with Additional Feature NP), and if the topic reference were used anywhere near the visually similar optional-chaining syntax proposal and nullish coalescing proposal, then the topic reference might be lost or unnoticed by the developer: for example, (?)??.m(??) is much less readable than #??.m(##).

Terse parentheses

Terseness also aids distinguishability by obviating the need for boilerplate syntactic noise. Parentheses are a prominent example: as long as operator precedence is clear, then reducing parentheses always would JavaScript code more visually terse and less cluttered.

The example above demonstrates how numerous verbose parentheses could become unnecessary with pipelines. In these cases the [“data-to-ink” visual ratio][] would significantly increase, emphasizing the program’s essential information. The developer’s cognitive burden – of ignoring unimportant incidental symbols as they read – has hopefully lightened.

Terse variables

Similarly, terseness of code may also be increased by removing variables where possible. This in turn would increase the data-to-ink visual ratio of the text and the distinguishability of important symbols. This style of programming is known as tacit or point-free programming (where “point” refers to function arguments). Jeremy Gibbons, a computer scientist, expressed its claimed benefits in a 1970 paper as such:

Our calculations got completely bogged down using [function arguments]. In attempting to rephrase [function] definitions […] in particular, eliminating as many variables as possible and performing point-free (or ‘pointless‘) calculations at the level of functino compisition instead of point-wise calculations at the level of application, suddenly the calculations became almost trivial. This is the point of [point-free] calculations: when you travel light – discarding variables that do not contribute to the calculation – you can sometimes step lightly across the surface of the quagmire.

This sort of terseness, in which the explicit is made tacit and implicit, must be balanced with syntactic locality and cyclomatic simplicity. Excessive implicitness compromises comprehensibility, at least without low-level tracing of tacit arguments’ invisible paths, rather than the actual, high-level meaning of the code. Yet at the same time, excessive explicitness generates ritual, verbose boilerplate that also interferes with reading comprehension. Therefore, untangled flow must be balanced with backward compatibility, syntactic locality, and cyclomatic simplicity.

The Zen of Python famously says, “Explicit is better than implicit,” but it also says, “Flat is better than nested,” and, “Sparse is better than dense.”

Terse function calls

Unary function / constructor calls are a particularly frequent type of expression and a good target for especial human optimization. However, such extra shortening might dramatically reduce the verbosity of unary function calls, but again this must be balanced with backward compatibility, syntactic locality, and cyclomatic simplicity.

It is the hope of this proposal’s authors that its smart step syntax reaches a good balance between this goal and syntactic locality and cyclomatic simplicity, in the same manner that Huffman coding optimizes textual symbols’ length for their frequency of use: more commonly used symbols are shorter in written length.

Furthermore, calls are not only unary; they may also be n-ary. Additional Feature NP adds support for terse N-ary function calls within pipelines.

Terse composition

Terse composition of all expressions – not only unary functions but also n-ary functions, object methods, async functions, generators, if else statements, and so forth – is a goal of smart pipelines. Several alternative proposals also address function composition, but Additional Feature PF holistically addresses it with application, partial application, and some forms of method extraction, and not only for unary functions but also for expressions of any type.

Terse partial application

Terse partial application of all expressions – not only functions but also object methods, async functions, generators, if else statements, and so forth – is a goal of smart pipelines. An existing alternative proposal also addresses partial function application, but Additional Feature PF holistically addresses it with application, partial application, and some forms of method extraction, and not only for unary functions but also for expressions of any type. Additional Feature NP extends this ability to N-ary expressions, including variadic expressions.

Other Goals

Although these have been prioritized last, they are still important.

Conceptual generality

If a concept is uniformly generalizable to many other cases, then this multiplies its usefulness. The more versatile its concepts, the more it may be applied to other syntax, including existing syntax and future syntax (compare with forward compatibility).

This proposal’s concept of a topic reference does not need to be coupled only to pipelines. The topic concept is generalizable to many syntactic forms, as the additional features demonstrate. They together form one unified vision of a future in which composition, partial application, and error handling are all tersely expressible with the same simple concepts.

Human writability

Writability of code is less important a priority than readability of code. Code is usually written a few days, perhaps by a few authors – but code will be read dozens or hundreds of times, perhaps by many more people. However, ease of writing and editing is still a good goal, and it often naturally increases when code also becomes more readable. A useful heuristic for writability is assessing the probability that a single edit to one piece of code will necessitate changes to other parts of code that are not directly related to the edit.

The simple addition or removal of a deeply nested expression may necessitate the indentation, de-indentation, parenthetical grouping, and parenthetical flattening of many lines of code; the tedium of these incidental changes is a major factor in the general popularity of automatic code formatters.

Achieving static analyzability therefore also improves the ease of composing and editing code. By flattening deeply nested expression trees into single threads of postfix steps, a step may be added oredited in isolation on a single line, it may be rearranged up or down, it may be removed – all without affecting the pipeline’s other steps in the lines above or below it.

Novice learnability

Learnability of the syntax is a desirable goal: the more intuitive the syntax is, the more rapidly it might be adopted by developers. However, learnability in of itself is not more desirable than the other goals above. Most JavaScript developers would be novices to this syntax at most once, during which the intuitiveness of the syntax will dominate their experience. But after that honeymoon period, the syntax’s usability in workaday programming will instead affect their reading and writing most.

So instead, readability, comprehensibility, locality, simplicity, expressiveness, and terseness are prioritized first, where they would conflict with learnability itself. However, a syntax that is simple but expressive – and, most of all, readable – could well be easier to learn. Its up-front cost in learning could be small, particularly in comparison to the large gains in readability and comprehensibility that it might bring to code in general.