OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // Unit test of the [NativeBehavior.processSpecString] method. | 5 // Unit test of the [NativeBehavior.processSpecString] method. |
6 | 6 |
7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
8 import 'package:compiler/src/native/native.dart'; | 8 import 'package:compiler/src/native/native.dart'; |
9 import 'package:compiler/src/diagnostic_listener.dart'; | 9 import 'package:compiler/src/dart2jslib.dart' |
| 10 show DiagnosticListener; |
10 import 'package:compiler/src/universe/universe.dart' | 11 import 'package:compiler/src/universe/universe.dart' |
11 show SideEffects; | 12 show SideEffects; |
12 | 13 |
13 const OBJECT = 'Object'; | 14 const OBJECT = 'Object'; |
14 const NULL = 'Null'; | 15 const NULL = 'Null'; |
15 | 16 |
16 class Listener implements DiagnosticListener { | 17 class Listener implements DiagnosticListener { |
17 String errorMessage; | 18 String errorMessage; |
18 internalError(spannable, message) { | 19 internalError(spannable, message) { |
19 errorMessage = message; | 20 errorMessage = message; |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 test('gvn:false', expectedGvn: false); | 276 test('gvn:false', expectedGvn: false); |
276 test('returns:A;gvn:true', returns: ['A'], expectedGvn: true); | 277 test('returns:A;gvn:true', returns: ['A'], expectedGvn: true); |
277 test(' gvn : true ; returns:A;', returns: ['A'], expectedGvn: true); | 278 test(' gvn : true ; returns:A;', returns: ['A'], expectedGvn: true); |
278 test('gvn:true;returns:A;gvn:true', expectError: true); | 279 test('gvn:true;returns:A;gvn:true', expectError: true); |
279 | 280 |
280 test('gvn: true; new: true', expectError: true); | 281 test('gvn: true; new: true', expectError: true); |
281 test('gvn: true; new: false', expectedGvn: true, expectedNew: false); | 282 test('gvn: true; new: false', expectedGvn: true, expectedNew: false); |
282 test('gvn: false; new: true', expectedGvn: false, expectedNew: true); | 283 test('gvn: false; new: true', expectedGvn: false, expectedNew: true); |
283 test('gvn: false; new: false', expectedGvn: false, expectedNew: false); | 284 test('gvn: false; new: false', expectedGvn: false, expectedNew: false); |
284 } | 285 } |
OLD | NEW |