| OLD | NEW |
| 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 library mock_compiler; | 5 library mock_compiler; |
| 6 | 6 |
| 7 import 'dart:uri'; | 7 import 'dart:uri'; |
| 8 | 8 |
| 9 import '../../../lib/compiler/compiler.dart' as api; | 9 import '../../../lib/compiler/compiler.dart' as api; |
| 10 import '../../../lib/compiler/implementation/dart2jslib.dart' hide TreeElementMa
pping; | 10 import '../../../lib/compiler/implementation/dart2jslib.dart' hide TreeElementMa
pping; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 next(receiver) {} | 54 next(receiver) {} |
| 55 hasNext(receiver) {}'''; | 55 hasNext(receiver) {}'''; |
| 56 | 56 |
| 57 const String DEFAULT_CORELIB = r''' | 57 const String DEFAULT_CORELIB = r''' |
| 58 print(var obj) {} | 58 print(var obj) {} |
| 59 abstract class int extends num {} | 59 abstract class int extends num {} |
| 60 abstract class double extends num {} | 60 abstract class double extends num {} |
| 61 class bool {} | 61 class bool {} |
| 62 class String {} | 62 class String {} |
| 63 class Object {} | 63 class Object {} |
| 64 class Type {} |
| 64 abstract class num {} | 65 abstract class num {} |
| 65 class Function {} | 66 class Function {} |
| 66 interface List default ListImplementation { List([length]);} | 67 interface List default ListImplementation { List([length]);} |
| 67 class ListImplementation { factory List([length]) => null; } | 68 class ListImplementation { factory List([length]) => null; } |
| 68 abstract class Map {} | 69 abstract class Map {} |
| 69 class Closure {} | 70 class Closure {} |
| 70 class Null {} | 71 class Null {} |
| 71 class Dynamic_ {} | 72 class Dynamic_ {} |
| 72 bool identical(Object a, Object b) {}'''; | 73 bool identical(Object a, Object b) {}'''; |
| 73 | 74 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 }); | 232 }); |
| 232 } | 233 } |
| 233 } | 234 } |
| 234 | 235 |
| 235 LibraryElement mockLibrary(Compiler compiler, String source) { | 236 LibraryElement mockLibrary(Compiler compiler, String source) { |
| 236 Uri uri = new Uri.fromComponents(scheme: "source"); | 237 Uri uri = new Uri.fromComponents(scheme: "source"); |
| 237 var library = new LibraryElement(new Script(uri, new MockFile(source))); | 238 var library = new LibraryElement(new Script(uri, new MockFile(source))); |
| 238 importLibrary(library, compiler.coreLibrary, compiler); | 239 importLibrary(library, compiler.coreLibrary, compiler); |
| 239 return library; | 240 return library; |
| 240 } | 241 } |
| OLD | NEW |