Files
sdk/tests/language/mixin_extends_method_test.dart
T
kasperl@google.com 3f57b647a5 Start allowing mixin application extensions.
This CL builds upon the code in https://codereview.chromium.org/11886097/
which needs to land before this one.

R=ahe@google.com
BUG=

Review URL: https://codereview.chromium.org//12018014

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@17270 260f80e4-7a28-3924-810f-c04153c831b5
2013-01-18 13:16:48 +00:00

53 lines
1.2 KiB
Dart

// Copyright (c) 2013, 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.
class S {
foo() => "S-foo";
baz() => "S-baz";
}
class M1 {
bar() => "M1-bar";
}
class M2 {
bar() => "M2-bar";
baz() => "M2-baz";
fez() => "M2-fez";
}
class C extends S with M1 { }
class D extends S with M1, M2 { }
class E extends S with M2, M1 { }
class F extends E {
fez() => "F-fez";
}
main() {
var c = new C();
Expect.equals("S-foo", c.foo());
Expect.equals("M1-bar", c.bar());
Expect.equals("S-baz", c.baz());
Expect.throws(() => c.fez(), (error) => error is NoSuchMethodError);
var d = new D();
Expect.equals("S-foo", d.foo());
Expect.equals("M2-bar", d.bar());
Expect.equals("M2-baz", d.baz());
Expect.equals("M2-fez", d.fez());
var e = new E();
Expect.equals("S-foo", e.foo());
Expect.equals("M1-bar", e.bar());
Expect.equals("M2-baz", e.baz());
Expect.equals("M2-fez", e.fez());
var f = new F();
Expect.equals("S-foo", f.foo());
Expect.equals("M1-bar", f.bar());
Expect.equals("M2-baz", f.baz());
Expect.equals("F-fez", f.fez());
}