Skip to content

Commit 10b9496

Browse files
committed
Whitespace
1 parent 87fdc7a commit 10b9496

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'.
@@ -16635,7 +16635,7 @@ \subsection{If-null Expressions}
1663516635
\end{grammar}
1663616636

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

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

1665016650
\LMHash{}%

0 commit comments

Comments
 (0)