912005267d
Change-Id: I46be49b2effec3e38a3dc44cd45cfe736f77fa78 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/182680 Commit-Queue: Sigmund Cherem <sigmund@google.com> Reviewed-by: Joshua Litt <joshualitt@google.com> Reviewed-by: Nicholas Shahan <nshahan@google.com> Reviewed-by: Stephen Adams <sra@google.com>
89 lines
2.2 KiB
Dart
89 lines
2.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.
|
|
|
|
import 'native_testing.dart';
|
|
|
|
// Test calling convention of property extraction closures.
|
|
|
|
class AA {
|
|
bar(a, [b = 'A']) => 'AA.bar($a, $b)'; // bar is plain dart convention.
|
|
foo(a, [b = 'A']) => 'AA.foo($a, $b)'; // foo has interceptor convention.
|
|
}
|
|
|
|
@Native("BB")
|
|
class BB {
|
|
foo(a, [b = 'B']) native;
|
|
}
|
|
|
|
@Native("CC")
|
|
class CC extends BB {
|
|
foo(a, [b = 'C']) native;
|
|
|
|
get superfoo => super.foo;
|
|
}
|
|
|
|
makeBB() native;
|
|
makeCC() native;
|
|
inscrutable(a) native;
|
|
|
|
void setup() {
|
|
JS('', r"""
|
|
(function(){
|
|
function BB() {}
|
|
BB.prototype.foo = function(u, v) {
|
|
return 'BB.foo(' + u + ', ' + v + ')';
|
|
};
|
|
|
|
function CC() {}
|
|
CC.prototype.foo = function(u, v) {
|
|
return 'CC.foo(' + u + ', ' + v + ')';
|
|
};
|
|
|
|
self.makeBB = function(){return new BB()};
|
|
self.makeCC = function(){return new CC()};
|
|
self.inscrutable = function(a){return a;};
|
|
|
|
self.nativeConstructor(BB);
|
|
self.nativeConstructor(CC);
|
|
})()""");
|
|
applyTestExtensions(['BB', 'CC']);
|
|
}
|
|
|
|
main() {
|
|
nativeTesting();
|
|
setup();
|
|
var a = inscrutable(new AA());
|
|
var b = inscrutable(makeBB());
|
|
var c = inscrutable(makeCC)();
|
|
|
|
Expect.equals('AA.bar(1, A)', inscrutable(a).bar(1));
|
|
Expect.equals('AA.bar(2, 3)', inscrutable(a).bar(2, 3));
|
|
|
|
Expect.equals('AA.foo(1, A)', inscrutable(a).foo(1));
|
|
Expect.equals('AA.foo(2, 3)', inscrutable(a).foo(2, 3));
|
|
|
|
Expect.equals('BB.foo(1, B)', inscrutable(b).foo(1));
|
|
Expect.equals('BB.foo(2, 3)', inscrutable(b).foo(2, 3));
|
|
|
|
Expect.equals('CC.foo(1, C)', inscrutable(c).foo(1));
|
|
Expect.equals('CC.foo(2, 3)', inscrutable(c).foo(2, 3));
|
|
|
|
var abar = inscrutable(a).bar;
|
|
var afoo = inscrutable(a).foo;
|
|
var bfoo = inscrutable(b).foo;
|
|
var cfoo = inscrutable(c).foo;
|
|
|
|
Expect.equals('AA.bar(1, A)', abar(1));
|
|
Expect.equals('AA.bar(2, 3)', abar(2, 3));
|
|
|
|
Expect.equals('AA.foo(1, A)', afoo(1));
|
|
Expect.equals('AA.foo(2, 3)', afoo(2, 3));
|
|
|
|
Expect.equals('BB.foo(1, B)', bfoo(1));
|
|
Expect.equals('BB.foo(2, 3)', bfoo(2, 3));
|
|
|
|
Expect.equals('CC.foo(1, C)', cfoo(1));
|
|
Expect.equals('CC.foo(2, 3)', cfoo(2, 3));
|
|
}
|