Skip to content

Commit 00ba195

Browse files
committed
Whitespace
1 parent 44f41ad commit 00ba195

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

19461946
\begin{dartCode}
19471947
bool b = \TRUE;
1948-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1948+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
19491949
\\
19501950
\VOID{} main() \{
19511951
print(i); // '11'.
@@ -17286,7 +17286,7 @@ \subsection{If-null Expressions}
1728617286
\end{grammar}
1728717287

1728817288
\LMHash{}%
17289-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
17289+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1729017290
Let $S$ be the static type of $e_1$.
1729117291
A warning occurs if $S$ is non-nullable.
1729217292
\commentary{In this case, the \lit{??} is superfluous.}
@@ -17295,7 +17295,7 @@ \subsection{If-null Expressions}
1729517295
of \NonNullType{$S$} and the static type of $e_2$.
1729617296

1729717297
\LMHash{}%
17298-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
17298+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1729917299
proceeds as follows:
1730017300

1730117301
\LMHash{}%

0 commit comments

Comments
 (0)