blob: 91909690c2176fc91919e2d7e4931672c9453ec7 [file] [log] [blame]
// 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.
// Check that `JSObject` can be used to type JS objects.
@JS()
library jsobject_type_test;
import 'dart:js_interop';
import 'package:expect/minitest.dart'; // ignore: deprecated_member_use_from_same_package
@JS()
external void eval(String code);
@JS()
external JSAny get obj;
void main() {
eval('''
globalThis.obj = {};
''');
expect(obj is JSObject, true);
obj as JSObject;
}