Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: pkg/js/lib/js_util.dart

Issue 2150313003: Add JSNative utility class with static methods methods to efficiently manipulate typed JSInterop ob… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix analyzer warnings in js_util_test, skip js_util_test in csp mode and baseline expectations for … Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/js/lib/js_util.dart
diff --git a/pkg/analyzer_cli/test/data/package_with_embedder_yaml/lib/grizzly.dart b/pkg/js/lib/js_util.dart
similarity index 70%
copy from pkg/analyzer_cli/test/data/package_with_embedder_yaml/lib/grizzly.dart
copy to pkg/js/lib/js_util.dart
index d575643598c26036bc0e72a3592eeccc5d6eaf44..1e47e5d4ec7aa6a5c47cd677a27203867c5423b6 100644
--- a/pkg/analyzer_cli/test/data/package_with_embedder_yaml/lib/grizzly.dart
+++ b/pkg/js/lib/js_util.dart
@@ -2,6 +2,7 @@
// 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.
-library grizzly;
+/// Allows interoperability with Javascript APIs.
+library js_util;
-class Bear {}
+export 'dart:js_util';

Powered by Google App Engine
This is Rietveld 408576698