Skip to content

Commit 717d123

Browse files
committed
Whitespace
1 parent a93ee53 commit 717d123

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

17161716
\begin{dartCode}
17171717
bool b = \TRUE;
1718-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1718+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
17191719
\\
17201720
\VOID{} main() \{
17211721
print(i); // '11'.
@@ -16721,7 +16721,7 @@ \subsection{If-null Expressions}
1672116721
\end{grammar}
1672216722

1672316723
\LMHash{}%
16724-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16724+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1672516725
Let $S$ be the static type of $e_1$.
1672616726
A warning occurs if $S$ is non-nullable.
1672716727
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16730,7 +16730,7 @@ \subsection{If-null Expressions}
1673016730
of \NonNullType{$S$} and the static type of $e_2$.
1673116731

1673216732
\LMHash{}%
16733-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16733+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1673416734
proceeds as follows:
1673516735

1673616736
\LMHash{}%

0 commit comments

Comments
 (0)