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

Unified Diff: pkg/compiler/lib/src/js_emitter/code_emitter_task.dart

Issue 862703002: Implement constructor bodies and initializers in CPS->JS backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename in analyzer2dart Created 5 years, 11 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/compiler/lib/src/js_emitter/code_emitter_task.dart
diff --git a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
index be50b5a2bbcb10938fa7f5f68fa06dd375db38be..0b98ac5650527842ba277e83e9a0c41b5e18004b 100644
--- a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
+++ b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
@@ -120,10 +120,6 @@ class CodeEmitterTask extends CompilerTask {
return emitter.typeAccess(e);
}
- jsAst.Expression closureClassConstructorAccess(ClosureClassElement e) {
- return emitter.closureClassConstructorAccess(e);
- }
-
void registerReadTypeVariable(TypeVariableElement element) {
readTypeVariables.add(element);
}
@@ -460,9 +456,6 @@ abstract class Emitter {
/// Returns the JS expression representing the type [e].
jsAst.Expression typeAccess(Element e);
- /// Returns the JS constructor for the given closure class [e].
- jsAst.Expression closureClassConstructorAccess(ClosureClassElement e);
-
/// Returns the JS expression representing a function that returns 'null'
jsAst.Expression generateFunctionThatReturnsNull();

Powered by Google App Engine
This is Rietveld 408576698