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

Unified Diff: dart/tests/compiler/dart2js/mock_libraries.dart

Issue 930143002: Remove implicit dependencies. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Changes committed as r43874. Created 5 years, 10 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
« no previous file with comments | « dart/pkg/compiler/lib/src/resolution/members.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/compiler/dart2js/mock_libraries.dart
diff --git a/dart/tests/compiler/dart2js/mock_libraries.dart b/dart/tests/compiler/dart2js/mock_libraries.dart
index ffa2dab548089e5980e14794d60ff81247c5f43d..380b300b124bc2f12feddc4aa956e4ac7fd42a61 100644
--- a/dart/tests/compiler/dart2js/mock_libraries.dart
+++ b/dart/tests/compiler/dart2js/mock_libraries.dart
@@ -70,7 +70,11 @@ const Map<String, String> DEFAULT_CORE_LIBRARY = const <String, String>{
operator -();
}''',
'print': 'print(var obj) {}',
- 'proxy': 'const proxy = 0;',
+ 'proxy': 'const proxy = const _Proxy();',
+ '_Proxy': '''
+ class _Proxy {
+ const _Proxy();
+ }''',
'Object': r'''
class Object {
const Object();
« no previous file with comments | « dart/pkg/compiler/lib/src/resolution/members.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698