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

Unified Diff: pkg/compiler/lib/src/apiimpl.dart

Issue 2535373003: Resolve type arguments to generic methods. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/kernel/task.dart » ('j') | pkg/compiler/lib/src/parser/parser.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/apiimpl.dart
diff --git a/pkg/compiler/lib/src/apiimpl.dart b/pkg/compiler/lib/src/apiimpl.dart
index dbff8dfefb0bb81bb8d3804c509280c33506afcd..fc92457466981e395bde54e00941a30cef90ba5d 100644
--- a/pkg/compiler/lib/src/apiimpl.dart
+++ b/pkg/compiler/lib/src/apiimpl.dart
@@ -381,8 +381,7 @@ class _Environment implements Environment {
// Private libraries are not exposed to the users.
if (libraryName.startsWith("_")) return null;
- Uri libraryUri =
- compiler.resolvedUriTranslator.sdkLibraries[libraryName];
+ Uri libraryUri = compiler.resolvedUriTranslator.sdkLibraries[libraryName];
if (libraryUri != null && libraryUri.scheme != "unsupported") {
// Dart2js always "supports" importing 'dart:mirrors' but will abort
// the compilation at a later point if the backend doesn't support
« no previous file with comments | « no previous file | pkg/compiler/lib/src/kernel/task.dart » ('j') | pkg/compiler/lib/src/parser/parser.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698