blob: 0a832dc95b658ac7f8da35074e391ebe06fb203b [file]
// 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/dart/error/syntactic_errors.dart';
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(InvalidConstructorNameTest);
});
}
@reflectiveTest
class InvalidConstructorNameTest extends PubPackageResolutionTest {
test_class_notEnclosingClassName_defined() async {
await assertErrorsInCode(
r'''
class A {
B() : super();
}
class B {}
''',
[error(ParserErrorCode.invalidConstructorName, 12, 1)],
);
}
test_class_notEnclosingClassName_named() async {
await assertErrorsInCode(
r'''
class A {}
class B {
A.foo();
B.foo();
}
''',
[error(ParserErrorCode.invalidConstructorName, 23, 1)],
);
}
test_class_notEnclosingClassName_new() async {
await assertErrorsInCode(
r'''
class A {}
class B {
A.new();
B();
}
''',
[error(ParserErrorCode.invalidConstructorName, 24, 1)],
);
}
test_class_notEnclosingClassName_undefined() async {
await assertErrorsInCode(
r'''
class A {
B() : super();
}
''',
[error(ParserErrorCode.invalidConstructorName, 12, 1)],
);
}
test_enum_named() async {
await assertErrorsInCode(
r'''
class A {}
enum E {
v.foo();
const A.foo();
const E.foo();
}
''',
[
error(ParserErrorCode.invalidConstructorName, 40, 1),
error(WarningCode.unusedElement, 59, 3),
],
);
}
}