Skip to content

Commit 73b5e6e

Browse files
committed
Whitespace
1 parent ec40a1b commit 73b5e6e

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

17241724
\begin{dartCode}
17251725
bool b = \TRUE;
1726-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1726+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
17271727
\\
17281728
\VOID{} main() \{
17291729
print(i); // '11'.
@@ -16793,7 +16793,7 @@ \subsection{If-null Expressions}
1679316793
\end{grammar}
1679416794

1679516795
\LMHash{}%
16796-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16796+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1679716797
Let $S$ be the static type of $e_1$.
1679816798
A warning occurs if $S$ is non-nullable.
1679916799
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16802,7 +16802,7 @@ \subsection{If-null Expressions}
1680216802
of \NonNullType{$S$} and the static type of $e_2$.
1680316803

1680416804
\LMHash{}%
16805-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16805+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1680616806
proceeds as follows:
1680716807

1680816808
\LMHash{}%

0 commit comments

Comments
 (0)