Chromium Code Reviews| Index: tests/compiler/dart2js_native/dispatch_property_initialization_test.dart |
| diff --git a/tests/compiler/dart2js_native/dispatch_property_initialization_test.dart b/tests/compiler/dart2js_native/dispatch_property_initialization_test.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c75eb90163e9f9cbcce3734ef024e9f31bc96699 |
| --- /dev/null |
| +++ b/tests/compiler/dart2js_native/dispatch_property_initialization_test.dart |
| @@ -0,0 +1,41 @@ |
| +// Copyright (c) 2016, 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. |
| + |
| +// Test for initialization of dispatchPropertyName. |
| + |
| +import "package:expect/expect.dart"; |
| +import 'dart:_foreign_helper' show JS; |
| +import 'dart:_js_helper' show Native; |
| + |
| +@Native("Foo") |
| +class Foo { |
| + String method(String x) native; |
| +} |
| + |
| +makeFoo() native; |
| + |
| +void setup() native r""" |
| +function Foo() {} |
| +Foo.prototype.method = function(x) { return 'Foo ' + x; } |
| + |
| +self.makeFoo = function() { return new Foo(); } |
| +"""; |
| + |
| + |
| +main() { |
| + setup(); |
| + |
| + // If the dispatchPropertyName is uninitialized, it will be `undefined` or |
| + // `null` instead oif teh secrst string or Symbol. These properties on |
|
Johnni Winther
2016/09/22 08:15:55
'oif teh secrst' -> 'of the secret'
sra1
2016/09/22 16:43:14
Done.
|
| + // `Object.prototype` will be retrieved by the lookup instead of `undefined` |
| + // for the dispatch record. |
| + JS('', r'self.Object.prototype["undefined"] = {}'); |
| + JS('', r'self.Object.prototype["null"] = {}'); |
| + Expect.equals('Foo A', makeFoo().method('A')); |
| + |
| + // Slightly different version that has malformed dispatch records. |
| + JS('', r'self.Object.prototype["undefined"] = {p: false}'); |
| + JS('', r'self.Object.prototype["null"] = {p: false}'); |
| + Expect.equals('Foo B', makeFoo().method('B')); |
| +} |