blob: d764182bb8101ba13299f89edc3bedd5eccd2b25 [file] [log] [blame]
// 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.
@JS()
library js_typed_interop_type3_test;
import 'dart:html';
import 'package:js/js.dart';
import 'package:expect/expect.dart';
@JS()
class A {
external get foo;
external A(var foo);
}
@JS()
@anonymous
class C {
external get foo;
external factory C({required foo});
}
@JS()
@anonymous
class D {
external get foo;
external factory D({required foo});
}
class F {
final foo;
F(this.foo);
}
@pragma('dart2js:noInline')
testA(A o) {
return o.foo;
}
@pragma('dart2js:noInline')
testC(C o) {
return o.foo;
}
@pragma('dart2js:noInline')
testD(D o) {
return o.foo;
}
@pragma('dart2js:noInline')
testF(F o) {
return o.foo;
}
_injectJs() {
document.body!.append(new ScriptElement()
..type = 'text/javascript'
..innerHtml = r"""
function A(foo) {
this.foo = foo;
}
""");
}
main() {
_injectJs();
var a = new A(1);
dynamic d = new D(foo: 4);
Expect.equals(testA(a), 1); //# 01: ok
Expect.equals(testA(a), 1); //# 02: ok
Expect.equals(testA(d), 4);
Expect.equals(testD(d), 4); //# 02: continued
}