blob: 623f271f5d3c8ce214da1342869258b7c8b92076 [file] [log] [blame]
// Copyright (c) 2022, 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(UndefinedSuperOperatorTest);
});
}
@reflectiveTest
class UndefinedSuperOperatorTest extends PubPackageResolutionTest {
test_class_binaryExpression() async {
await assertErrorsInCode(r'''
class A {}
class B extends A {
operator +(value) {
return super + value;
}
}
''', [
error(CompileTimeErrorCode.UNDEFINED_SUPER_OPERATOR, 70, 1),
]);
}
test_class_indexBoth() async {
await assertErrorsInCode(r'''
class A {}
class B extends A {
operator [](index) {
return super[index]++;
}
}
''', [
error(CompileTimeErrorCode.UNDEFINED_SUPER_OPERATOR, 70, 7),
error(CompileTimeErrorCode.UNDEFINED_SUPER_OPERATOR, 70, 7),
]);
}
test_class_indexGetter() async {
await assertErrorsInCode(r'''
class A {}
class B extends A {
operator [](index) {
return super[index + 1];
}
}
''', [
error(CompileTimeErrorCode.UNDEFINED_SUPER_OPERATOR, 70, 11),
]);
}
test_class_indexSetter() async {
await assertErrorsInCode(r'''
class A {}
class B extends A {
operator []=(index, value) {
super[index] = 0;
}
}
''', [
error(CompileTimeErrorCode.UNDEFINED_SUPER_OPERATOR, 71, 7),
]);
}
}