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

Unified Diff: corelib/src/map.dart

Issue 8921033: Implement revised factories in the VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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: corelib/src/map.dart
===================================================================
--- corelib/src/map.dart (revision 2391)
+++ corelib/src/map.dart (working copy)
@@ -95,7 +95,7 @@
* and [getValues].
*/
interface HashMap<K extends Hashable, V> extends Map<K, V>
- factory HashMapImplementation/*<K extends Hashable, V>*/ {
+ factory HashMapImplementation {
// See issue 417. Works in the vm, fails in dartc and frog.
/**
@@ -114,7 +114,7 @@
* order.
*/
interface LinkedHashMap<K extends Hashable, V> extends HashMap<K, V>
- factory LinkedHashMapImplementation/*<K extends Hashable, V>*/ {
+ factory LinkedHashMapImplementation {
// See issue 417. Works in the vm, fails in dartc and frog.
/**

Powered by Google App Engine
This is Rietveld 408576698