Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/lib/collection_dev_patch.dart

Issue 14173005: Update dart:mirrors to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix various issues discovered during own review. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698