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

Side by Side Diff: dart/tests/compiler/dart2js/unparser_test.dart

Issue 10917170: Improve handling of built-in identifiers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #import('dart:uri'); 5 #import('dart:uri');
6 #import('parser_helper.dart'); 6 #import('parser_helper.dart');
7 #import('mock_compiler.dart'); 7 #import('mock_compiler.dart');
8 #import("../../../lib/compiler/compiler.dart"); 8 #import("../../../lib/compiler/compiler.dart");
9 #import("../../../lib/compiler/implementation/leg.dart", prefix:'leg'); 9 #import("../../../lib/compiler/implementation/leg.dart", prefix:'leg');
10 #import("../../../lib/compiler/implementation/dart_backend/dart_backend.dart"); 10 #import("../../../lib/compiler/implementation/dart_backend/dart_backend.dart");
(...skipping 15 matching lines...) Expand all
26 class Object {} 26 class Object {}
27 interface bool {} 27 interface bool {}
28 interface num {} 28 interface num {}
29 interface int extends num {} 29 interface int extends num {}
30 interface double extends num {} 30 interface double extends num {}
31 interface String {} 31 interface String {}
32 interface Function {} 32 interface Function {}
33 interface List {} 33 interface List {}
34 interface Map {} 34 interface Map {}
35 interface Closure {} 35 interface Closure {}
36 interface Dynamic {} 36 interface Dynamic_ {}
37 interface Null {} 37 interface Null {}
38 class Math { 38 class Math {
39 static double parseDouble(String s) => 1.0; 39 static double parseDouble(String s) => 1.0;
40 } 40 }
41 '''; 41 ''';
42 42
43 const ioLib = @''' 43 const ioLib = @'''
44 #library('io'); 44 #library('io');
45 class Platform { 45 class Platform {
46 static int operatingSystem; 46 static int operatingSystem;
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 testDoubleMains(); 857 testDoubleMains();
858 testInterfaceDefaultAnotherLib(); 858 testInterfaceDefaultAnotherLib();
859 testStaticAccessIoLib(); 859 testStaticAccessIoLib();
860 testLocalFunctionPlaceholder(); 860 testLocalFunctionPlaceholder();
861 testMinification(); 861 testMinification();
862 testClosureLocalsMinified(); 862 testClosureLocalsMinified();
863 testParametersMinified(); 863 testParametersMinified();
864 testTypeVariablesInDifferentLibraries(); 864 testTypeVariablesInDifferentLibraries();
865 testDeclarationTypePlaceholders(); 865 testDeclarationTypePlaceholders();
866 } 866 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698