blob: 3ca4a9eb3a1f40b1deeacfc2456f1647f03c2687 [file] [log] [blame]
// 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.
// @dart = 2.9
// Test for dart2js initialization of dispatchPropertyName.
import 'package:expect/minitest.dart';
import 'package:expect/expect.dart' show NoInline, AssumeDynamic;
import 'js_dispatch_property_test_lib.dart';
@pragma('dart2js:noInline')
@pragma('dart2js:assumeDynamic')
confuse(x) => x;
main() {
group('group', () {
test('test', () {
// Force dynamic interceptor dispatch.
var a = confuse(create());
expect(a.foo('A'), equals('Foo A'));
});
});
}