Files
sdk/pkg/dart2bytecode/testcases/super_calls.dart
Alexander Markov 3abf78212c Bytecode compiler
Add dart2bytecode tool which takes Dart sources and produces
Dart bytecode. The tool uses common front-end (CFE) to parse Dart
source code and contains bytecode generator which translates
kernel AST to bytecode.

Change-Id: I90bd6e72c619cf0edc556da0640760b30e81091d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/378560
Commit-Queue: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Slava Egorov <vegorov@google.com>
2024-08-08 18:08:58 +00:00

40 lines
931 B
Dart

// Copyright (c) 2024, 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.
// Tests various super-calls.
class Base1 {
void foo<T>(T a1, int a2) {}
get bar => 42;
set bazz(int x) {}
}
class A extends Base1 {
testSuperCall(int x) => super.foo<String>('a1', 2);
testSuperTearOff() => super.foo;
testSuperGet() => super.bar;
testSuperCallViaGetter() => super.bar<int>('param');
testSuperSet() {
super.bazz = 3;
}
}
abstract class Base2 {
void foo<T>(String a1, T a2, int a3);
get bar;
set bazz(int x);
}
mixin B on Base2 {
testSuperCall(int x) => super.foo<double>('a1', 3.14, 5);
testSuperTearOff() => super.foo;
testSuperGet() => super.bar;
testSuperCallViaGetter() => super.bar<int>('param');
testSuperSet() {
super.bazz = 3;
}
}
main() {}