| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'package:analyzer/src/error/codes.dart'; |
| import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| |
| import '../dart/resolution/context_collection_resolution.dart'; |
| |
| main() { |
| defineReflectiveSuite(() { |
| defineReflectiveTests(NonConstantListElementFromDeferredLibraryTest); |
| }); |
| } |
| |
| @reflectiveTest |
| class NonConstantListElementFromDeferredLibraryTest |
| extends PubPackageResolutionTest { |
| @failingTest |
| test_const_ifElement_thenTrue_deferredElse() async { |
| // reports wrong error code (which is not crucial to fix) |
| newFile('$testPackageLibPath/lib1.dart', r''' |
| const int c = 1; |
| '''); |
| await assertErrorsInCode(r''' |
| import 'lib1.dart' deferred as a; |
| const cond = true; |
| var v = const [ if (cond) 'a' else a.c ]; |
| ''', [ |
| error( |
| CompileTimeErrorCode.NON_CONSTANT_LIST_ELEMENT_FROM_DEFERRED_LIBRARY, |
| 0, |
| 0), |
| ]); |
| } |
| |
| test_const_ifElement_thenTrue_deferredThen() async { |
| newFile('$testPackageLibPath/lib1.dart', r''' |
| const int c = 1; |
| '''); |
| await assertErrorsInCode(r''' |
| import 'lib1.dart' deferred as a; |
| const cond = true; |
| var v = const [ if (cond) a.c ]; |
| ''', [ |
| error( |
| CompileTimeErrorCode.NON_CONSTANT_LIST_ELEMENT_FROM_DEFERRED_LIBRARY, |
| 81, |
| 1), |
| ]); |
| } |
| |
| test_const_topLevel_deferred() async { |
| newFile('$testPackageLibPath/lib1.dart', r''' |
| const int c = 1; |
| '''); |
| await assertErrorsInCode(r''' |
| import 'lib1.dart' deferred as a; |
| var v = const [a.c]; |
| ''', [ |
| error( |
| CompileTimeErrorCode.NON_CONSTANT_LIST_ELEMENT_FROM_DEFERRED_LIBRARY, |
| 51, |
| 1), |
| ]); |
| } |
| |
| test_const_topLevel_deferred_nested() async { |
| newFile('$testPackageLibPath/lib1.dart', r''' |
| const int c = 1; |
| '''); |
| await assertErrorsInCode(r''' |
| import 'lib1.dart' deferred as a; |
| var v = const [a.c + 1]; |
| ''', [ |
| error( |
| CompileTimeErrorCode.NON_CONSTANT_LIST_ELEMENT_FROM_DEFERRED_LIBRARY, |
| 51, |
| 1), |
| ]); |
| } |
| |
| test_const_topLevel_notDeferred() async { |
| newFile('$testPackageLibPath/lib1.dart', r''' |
| const int c = 1; |
| '''); |
| await assertNoErrorsInCode(r''' |
| import 'lib1.dart' as a; |
| var v = const [a.c]; |
| '''); |
| } |
| } |