c50a40988a
Closes https://github.com/dart-lang/sdk/issues/50899 Allows users to interop with types that have been bound to @Native types on the JS backends, error types that have been bound in DDC, and the JS Array type. Change-Id: Ic28a60127e558eb8bb017595ac54a43920a500c2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/282483 Reviewed-by: Joshua Litt <joshualitt@google.com> Commit-Queue: Srujan Gaddam <srujzs@google.com>
27 lines
641 B
Dart
27 lines
641 B
Dart
// Copyright (c) 2023, 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 that JS' Array type is interoperable using static interop.
|
|
|
|
@JS()
|
|
library js_array_test;
|
|
|
|
import 'dart:js_interop';
|
|
|
|
@JS()
|
|
external dynamic eval(String code);
|
|
|
|
// dart:js_interop top-levels do return-type checks so if the call to these
|
|
// getters succeed, it's enough to know they can be interoperable.
|
|
|
|
@JS()
|
|
external JSObject get jsArray;
|
|
|
|
void main() {
|
|
eval('''
|
|
this.jsArray = Array();
|
|
''');
|
|
jsArray;
|
|
}
|