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

Unified Diff: frog/tests/leg/src/mock_compiler.dart

Issue 10091037: Clean up handling of types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove debug code. Created 8 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: frog/tests/leg/src/mock_compiler.dart
diff --git a/frog/tests/leg/src/mock_compiler.dart b/frog/tests/leg/src/mock_compiler.dart
index 4292968dbaa4a754fea9e0668c8b70fb0481a129..ef02906e2c7448dfa4fa605a31cd552cc45765b2 100644
--- a/frog/tests/leg/src/mock_compiler.dart
+++ b/frog/tests/leg/src/mock_compiler.dart
@@ -35,7 +35,6 @@ final String DEFAULT_HELPERLIB = @'''
builtin$removeLast$0(receiver) {}
index(a, index) {}
indexSet(a, index, value) {}
- class Closure {}
builtin$iterator$0() {}
builtin$next$0() {}
builtin$hasNext$0() {}''';
@@ -46,7 +45,13 @@ final String DEFAULT_CORELIB = @'''
class double {}
class bool {}
class String {}
- class Object {}''';
+ class Object {}
+ class num {}
+ class Function {}
+ class List {}
+ class Closure {}
+ class Null {}
+ class Dynamic {}''';
class MockCompiler extends Compiler {
List<WarningMessage> warnings;

Powered by Google App Engine
This is Rietveld 408576698