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

Unified Diff: frog/value.dart

Issue 9107031: fix Library*NegativeTests (and a couple Prefix ones by accident) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebased Created 8 years, 11 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: frog/value.dart
diff --git a/frog/value.dart b/frog/value.dart
index d0ee5a909d3a3e71be19deb4abeecbafb66a227e..df449909ea9993fd938a40c58daa03cf49e8b88a 100644
--- a/frog/value.dart
+++ b/frog/value.dart
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// 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.
@@ -990,7 +990,7 @@ class MapValue extends EvaluatedValue {
String get code() {
// Cache?
var items = new ListValue(values, false, world.listType, span);
- var tp = world.corelib.topType;
+ var tp = world.coreimpl.topType;
Member f = isConst ? tp.getMember('_constMap') : tp.getMember('_map');
// TODO(jimhug): Clean up invoke signature
var value = f.invoke(null, null, new Value.type(tp, null),

Powered by Google App Engine
This is Rietveld 408576698