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>
119 lines
2.3 KiB
Dart
119 lines
2.3 KiB
Dart
// Copyright (c) 2011, 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.
|
|
|
|
// @dart = 2.7
|
|
|
|
import 'native_testing.dart';
|
|
|
|
// Test that type checks occur on native methods.
|
|
|
|
@Native("A")
|
|
class A {
|
|
int foo(int x) native;
|
|
int cmp(A other) native;
|
|
}
|
|
|
|
@Native("B")
|
|
class B {
|
|
String foo(String x) native;
|
|
int cmp(B other) native;
|
|
}
|
|
|
|
A makeA() native;
|
|
B makeB() native;
|
|
|
|
void setup() {
|
|
JS('', r"""
|
|
(function(){
|
|
function A() {}
|
|
A.prototype.foo = function (x) { return x + 1; };
|
|
A.prototype.cmp = function (x) { return 0; };
|
|
|
|
function B() {}
|
|
B.prototype.foo = function (x) { return x + 'ha!'; };
|
|
B.prototype.cmp = function (x) { return 1; };
|
|
|
|
self.makeA = function(){return new A()};
|
|
self.makeB = function(){return new B()};
|
|
|
|
self.nativeConstructor(A);
|
|
self.nativeConstructor(B);
|
|
})()""");
|
|
applyTestExtensions(['A', 'B']);
|
|
}
|
|
|
|
expectThrows(action()) {
|
|
bool threw = false;
|
|
try {
|
|
action();
|
|
} catch (e) {
|
|
threw = true;
|
|
}
|
|
Expect.isTrue(threw);
|
|
}
|
|
|
|
complianceModeTest() {
|
|
var things = <dynamic>[makeA(), makeB()];
|
|
var a = things[0];
|
|
var b = things[1];
|
|
|
|
Expect.equals(124, a.foo(123));
|
|
expectThrows(() => a.foo('xxx'));
|
|
|
|
Expect.equals('helloha!', b.foo('hello'));
|
|
expectThrows(() => b.foo(123));
|
|
|
|
Expect.equals(0, a.cmp(a));
|
|
expectThrows(() => a.cmp(b));
|
|
expectThrows(() => a.cmp(5));
|
|
|
|
Expect.equals(1, b.cmp(b));
|
|
expectThrows(() => b.cmp(a));
|
|
expectThrows(() => b.cmp(5));
|
|
}
|
|
|
|
omitImplicitChecksModeTest() {
|
|
var things = <dynamic>[makeA(), makeB()];
|
|
var a = things[0];
|
|
var b = things[1];
|
|
|
|
Expect.equals(124, a.foo(123));
|
|
Expect.equals('xxx1', a.foo('xxx'));
|
|
|
|
Expect.equals('helloha!', b.foo('hello'));
|
|
Expect.equals('123ha!', b.foo(123));
|
|
|
|
Expect.equals(0, a.cmp(a));
|
|
Expect.equals(0, a.cmp(b));
|
|
Expect.equals(0, a.cmp(5));
|
|
|
|
Expect.equals(1, b.cmp(b));
|
|
Expect.equals(1, b.cmp(a));
|
|
Expect.equals(1, b.cmp(5));
|
|
}
|
|
|
|
bool isComplianceMode() {
|
|
var stuff = <dynamic>[1, 'string'];
|
|
dynamic a = stuff[0];
|
|
// compliance-mode detection.
|
|
try {
|
|
String s = a;
|
|
return false;
|
|
} catch (e) {
|
|
// Ignore.
|
|
}
|
|
return true;
|
|
}
|
|
|
|
main() {
|
|
nativeTesting();
|
|
setup();
|
|
|
|
if (isComplianceMode()) {
|
|
complianceModeTest();
|
|
} else {
|
|
omitImplicitChecksModeTest();
|
|
}
|
|
}
|