dart-sdk/sdk_nnbd/lib/js/_js_server.dart
Vijay Menon 4e20b392a9 [nnbd] remove opt-out for dart:_js
No other changes appear necessary.

Change-Id: I791a35aeec54c39849a219430cfc45f3c21e71b2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/132746
Auto-Submit: Vijay Menon <vsm@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Vijay Menon <vsm@google.com>
2020-01-22 21:39:56 +00:00

12 lines
361 B
Dart

// Copyright (c) 2018, 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.
import 'dart:_js_helper' show patch;
@patch
bool isBrowserObject(dynamic o) => false;
@patch
Object convertFromBrowserObject(dynamic o) => o;