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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart

Issue 416643002: Support typedefs in function signatures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Recognize typedefs and function mirrors in typeMirrorFromRuntimeTypeRepresentation. Created 6 years, 4 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: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
index 71991121026ecc9a0c9246d4922c2ad494d10b71..f91be191a7c2b224d165b7e93f7049ab87258bed 100644
--- a/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
@@ -17,10 +17,13 @@ import '../closure.dart' show
import '../dart2jslib.dart' show
CodeBuffer;
+import '../dart_types.dart' show
+ TypedefType;
+
import '../elements/elements.dart' show
- TypeVariableElement,
ConstructorBodyElement,
- ParameterElement;
+ ParameterElement,
+ TypeVariableElement;
import '../js/js.dart' show
js, templateManager;

Powered by Google App Engine
This is Rietveld 408576698