| 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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; | 6 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; | 7 import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart'; |
| 8 import '../../../sdk/lib/_internal/compiler/implementation/types/types.dart'; | 8 import '../../../sdk/lib/_internal/compiler/implementation/types/types.dart'; |
| 9 | 9 |
| 10 import "parser_helper.dart"; | 10 import "parser_helper.dart"; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 num floor(); | 153 num floor(); |
| 154 } | 154 } |
| 155 abstract class int extends num { | 155 abstract class int extends num { |
| 156 bool get isEven; | 156 bool get isEven; |
| 157 } | 157 } |
| 158 abstract class double extends num { | 158 abstract class double extends num { |
| 159 bool get isNaN; | 159 bool get isNaN; |
| 160 } | 160 } |
| 161 class bool {} | 161 class bool {} |
| 162 class String {} | 162 class String {} |
| 163 class Object {} | 163 class Object { |
| 164 Object(); |
| 165 } |
| 164 class Function {} | 166 class Function {} |
| 165 abstract class List<E> { | 167 abstract class List<E> { |
| 166 factory List([int length]) {} | 168 factory List([int length]) {} |
| 167 } | 169 } |
| 168 abstract class Map<K, V> {} | 170 abstract class Map<K, V> {} |
| 169 class Closure {} | 171 class Closure {} |
| 170 class Type {} | 172 class Type {} |
| 171 class StackTrace {} | 173 class StackTrace {} |
| 172 class Dynamic_ {} | 174 class Dynamic_ {} |
| 173 bool identical(Object a, Object b) {}'''; | 175 bool identical(Object a, Object b) {}'''; |
| (...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 testJsCallAugmentsSeenClasses(); | 1572 testJsCallAugmentsSeenClasses(); |
| 1571 testIsCheck(); | 1573 testIsCheck(); |
| 1572 testSeenClasses(); | 1574 testSeenClasses(); |
| 1573 testIntDoubleNum(); | 1575 testIntDoubleNum(); |
| 1574 testConcreteTypeToTypeMask(); | 1576 testConcreteTypeToTypeMask(); |
| 1575 testSelectors(); | 1577 testSelectors(); |
| 1576 testMixins(); | 1578 testMixins(); |
| 1577 testClosures(); | 1579 testClosures(); |
| 1578 testNestedFunctions(); | 1580 testNestedFunctions(); |
| 1579 } | 1581 } |
| OLD | NEW |