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

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

Issue 690103004: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // We used to always nullify the element type of a list we are tracing in 5 // We used to always nullify the element type of a list we are tracing in
6 // the presence of a fixed length list constructor call. 6 // the presence of a fixed length list constructor call.
7 7
8 import 'package:expect/expect.dart'; 8 import 'package:expect/expect.dart';
9 import "package:async_helper/async_helper.dart"; 9 import "package:async_helper/async_helper.dart";
10 import 'package:compiler/implementation/types/types.dart' 10 import 'package:compiler/src/types/types.dart'
11 show ContainerTypeMask, TypeMask; 11 show ContainerTypeMask, TypeMask;
12 12
13 import 'compiler_helper.dart'; 13 import 'compiler_helper.dart';
14 import 'parser_helper.dart'; 14 import 'parser_helper.dart';
15 import 'type_mask_test_helper.dart'; 15 import 'type_mask_test_helper.dart';
16 16
17 17
18 const String TEST = r''' 18 const String TEST = r'''
19 var myList = []; 19 var myList = [];
20 var otherList = ['foo', 42]; 20 var otherList = ['foo', 42];
(...skipping 15 matching lines...) Expand all
36 ContainerTypeMask mask = typesInferrer.getTypeOfElement(element); 36 ContainerTypeMask mask = typesInferrer.getTypeOfElement(element);
37 Expect.equals(type, simplify(mask.elementType, compiler), name); 37 Expect.equals(type, simplify(mask.elementType, compiler), name);
38 } 38 }
39 39
40 var interceptorType = 40 var interceptorType =
41 findTypeMask(compiler, 'Interceptor', 'nonNullSubclass'); 41 findTypeMask(compiler, 'Interceptor', 'nonNullSubclass');
42 42
43 checkType('myList', interceptorType); 43 checkType('myList', interceptorType);
44 })); 44 }));
45 } 45 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/list_tracer2_test.dart ('k') | tests/compiler/dart2js/list_tracer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698