Files
sdk/pkg/compiler/test/optimization/data/remove_last.dart
T
Lasse R.H. Nielsen 711e50389f Remove var and final from parameters in pkg/.
Doesn't change anything in `front_end/*testcases/primary_constructors/`.
(Would have skipped any other file with `test` in its path and
an explicit language version marker, but there weren't any outside
of those `front_end` directories).

Almost no files used as test input were affected, and none testing the actual syntax changed.
The `.../nnbd/required_2.dart` test case was split into a legacy version retaining the `var`/`final` with a language marker, and a new version without the `var`/`final` cases.

The `pkg/analyzer/` tests, and any other tests that have source code
in strings, are not migrated by this CL.

Tested: No change to behavior. One test split into legacy and new.
Change-Id: I7f5aa4cc98001a9adecacd106c0b3be14f96be1c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/480542
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
Reviewed-by: Ryan Macnak <rmacnak@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
Reviewed-by: Nicholas Shahan <nshahan@google.com>
2026-04-10 09:09:39 -07:00

58 lines
1.5 KiB
Dart

// Copyright (c) 2020, 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 'dart:collection';
import 'dart:typed_data';
/*member: dynamicIndex:Specializer=[!RemoveLast]*/
@pragma('dart2js:noInline')
dynamicIndex(list) {
return list.removeLast(); // This is not known to be an indexable primitive.
}
/*member: unknownList:Specializer=[!RemoveLast]*/
@pragma('dart2js:noInline')
unknownList(List list) {
return list.removeLast(); // This is not known to be an indexable primitive.
}
/*member: possiblyNullMutableList:Specializer=[RemoveLast]*/
@pragma('dart2js:noInline')
possiblyNullMutableList(bool b) {
var list = b ? [0] : null;
return list!.removeLast();
}
/*member: mutableList:Specializer=[RemoveLast]*/
@pragma('dart2js:noInline')
mutableList() {
var list = [0];
return list.removeLast();
}
/*member: typedList:Specializer=[!RemoveLast]*/
@pragma('dart2js:noInline')
typedList() {
var list = Uint8List(10);
return list.removeLast();
}
main() {
dynamicIndex([]);
dynamicIndex({});
unknownList([]);
unknownList(new MyList());
possiblyNullMutableList(true);
possiblyNullMutableList(false);
mutableList();
typedList();
}
class MyList<E> extends ListBase<E?> {
E? operator [](int index) => null;
void operator []=(int index, E? value) {}
int get length => 0;
void set length(int value) {}
}