Skip to content

Commit 33eba03

Browse files
committed
Whitespace
1 parent b05bd3f commit 33eba03

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

18891889
\begin{dartCode}
18901890
bool b = \TRUE;
1891-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1891+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
18921892
\\
18931893
\VOID{} main() \{
18941894
print(i); // '11'.
@@ -16955,7 +16955,7 @@ \subsection{If-null Expressions}
1695516955
\end{grammar}
1695616956

1695716957
\LMHash{}%
16958-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16958+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1695916959
Let $S$ be the static type of $e_1$.
1696016960
A warning occurs if $S$ is non-nullable.
1696116961
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16964,7 +16964,7 @@ \subsection{If-null Expressions}
1696416964
of \NonNullType{$S$} and the static type of $e_2$.
1696516965

1696616966
\LMHash{}%
16967-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16967+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1696816968
proceeds as follows:
1696916969

1697016970
\LMHash{}%

0 commit comments

Comments
 (0)