Chromium Code Reviews| Index: dart/sdk/lib/_internal/compiler/implementation/lib/collection_dev_patch.dart |
| diff --git a/dart/editor/tools/plugins/com.google.dart.tools.debug.core_test/data/scripts/test.dart b/dart/sdk/lib/_internal/compiler/implementation/lib/collection_dev_patch.dart |
| similarity index 68% |
| copy from dart/editor/tools/plugins/com.google.dart.tools.debug.core_test/data/scripts/test.dart |
| copy to dart/sdk/lib/_internal/compiler/implementation/lib/collection_dev_patch.dart |
| index e67e24b968af7775f7d780650dfb1819df5c754f..30c99adac30193c5c518efe1c4175058eff1d856 100644 |
| --- a/dart/editor/tools/plugins/com.google.dart.tools.debug.core_test/data/scripts/test.dart |
| +++ b/dart/sdk/lib/_internal/compiler/implementation/lib/collection_dev_patch.dart |
| @@ -2,8 +2,7 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| -void main() { |
| - print("1"); |
| - print("2"); |
| - print("3"); |
| +patch class Symbol implements core.Symbol { |
| + patch const Symbol(String name) |
|
Søren Gjesse
2013/04/15 14:08:31
Fits one line.
ahe
2013/04/15 14:29:55
I think the style guide recommends putting it on a
|
| + : this._name = name; |
| } |