Skip to content

Commit a14d91a

Browse files
committed
Whitespace
1 parent 5b5afa7 commit a14d91a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

specification/dartLangSpec.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1700,7 +1700,7 @@ \subsection{Evaluation of Implicit Variable Getters}
17001700

17011701
\begin{dartCode}
17021702
bool b = \TRUE;
1703-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1703+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
17041704
\\
17051705
\VOID{} main() \{
17061706
print(i); // '11'.
@@ -16633,7 +16633,7 @@ \subsection{If-null Expressions}
1663316633
\end{grammar}
1663416634

1663516635
\LMHash{}%
16636-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16636+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1663716637
Let $S$ be the static type of $e_1$.
1663816638
A warning occurs if $S$ is non-nullable.
1663916639
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16642,7 +16642,7 @@ \subsection{If-null Expressions}
1664216642
of \NonNullType{$S$} and the static type of $e_2$.
1664316643

1664416644
\LMHash{}%
16645-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16645+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1664616646
proceeds as follows:
1664716647

1664816648
\LMHash{}%

0 commit comments

Comments
 (0)