@@ -3,7 +3,7 @@ title: A tour of the Dart language
3
3
description : A tour of all of the major Dart language features.
4
4
short-title : Language tour
5
5
---
6
- <? code-excerpt replace="/([A-Z]\w*)\d\b/$1/g"?>
6
+ <? code-excerpt replace="/ *\/\/\s+ignore_for_file:[^\n]+\n//g; / *\/\/\s+ignore:[^\n]+//g; / ([A-Z]\w*)\d\b/$1/g"?>
7
7
8
8
This page shows you how to use each major Dart feature, from
9
9
variables and operators to classes and libraries, with the assumption
@@ -757,7 +757,7 @@ var list2 = [0, ...?list];
757
757
assert(list2.length == 1);
758
758
{% endprettify %}
759
759
760
- For more details and examples of using the spread operator, see the
760
+ For more details and examples of using the spread operator, see the
761
761
[ spread operator proposal.] [ spread proposal ]
762
762
763
763
<a id =" collection-operators " > </a >
@@ -792,7 +792,7 @@ var listOfStrings = [
792
792
assert(listOfStrings[ 1] == '#1 ');
793
793
{% endprettify %}
794
794
795
- For more details and examples of using collection if and for, see the
795
+ For more details and examples of using collection if and for, see the
796
796
[ control flow collections proposal.] [ collections proposal ]
797
797
798
798
[ collections proposal ] : https://github.com/dart-lang/language/blob/master/accepted/2.3/control-flow-collections/feature-specification.md
0 commit comments