Skip to content

Commit b16af43

Browse files
committed
Whitespace
1 parent b580315 commit b16af43

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

18991899
\begin{dartCode}
19001900
bool b = \TRUE;
1901-
int i = (() => (b = !b) ? (i = 10) : i + 1 )();
1901+
int i = (() => (b = !b) ? (i = 10) : i + 1)();
19021902
\\
19031903
\VOID{} main() \{
19041904
print(i); // '11'.
@@ -16974,7 +16974,7 @@ \subsection{If-null Expressions}
1697416974
\end{grammar}
1697516975

1697616976
\LMHash{}%
16977-
Consider an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}.
16977+
Consider an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}.
1697816978
Let $S$ be the static type of $e_1$.
1697916979
A warning occurs if $S$ is non-nullable.
1698016980
\commentary{In this case, the \lit{??} is superfluous.}
@@ -16983,7 +16983,7 @@ \subsection{If-null Expressions}
1698316983
of \NonNullType{$S$} and the static type of $e_2$.
1698416984

1698516985
\LMHash{}%
16986-
Evaluation of an if-null expression $e$ of the form \code{$e_1$ ?? $e_2$}
16986+
Evaluation of an if-null expression $e$ of the form \code{$e_1$\,\,??\,\,$e_2$}
1698716987
proceeds as follows:
1698816988

1698916989
\LMHash{}%

0 commit comments

Comments
 (0)