Skip to content

Commit 8d98165

Browse files
committed
Whitespace
1 parent c2fb894 commit 8d98165

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
@@ -1699,7 +1699,7 @@ \subsection{Evaluation of Implicit Variable Getters}
16991699

17001700
\begin{dartCode}
17011701
bool b = \TRUE;
1702-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1702+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
17031703
\\
17041704
\VOID{} main() \{
17051705
print(i); // '11'.
@@ -16568,7 +16568,7 @@ \subsection{If-null Expressions}
1656816568
\end{grammar}
1656916569

1657016570
\LMHash{}%
16571-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16571+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1657216572
Let $S$ be the static type of $e_1$.
1657316573
A warning occurs if $S$ is non-nullable.
1657416574
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16577,7 +16577,7 @@ \subsection{If-null Expressions}
1657716577
of \NonNullType{$S$} and the static type of $e_2$.
1657816578

1657916579
\LMHash{}%
16580-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16580+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1658116581
proceeds as follows:
1658216582

1658316583
\LMHash{}%

0 commit comments

Comments
 (0)