Index: pkg/compiler/lib/src/js_backend/backend_impact.dart |
diff --git a/pkg/compiler/lib/src/js_backend/backend_impact.dart b/pkg/compiler/lib/src/js_backend/backend_impact.dart |
index 9a9a0d1a429d4c6531ad465377e25b654f23735d..7fb1e9c0a86afaebf7f9fbad8b8e1358a881c134 100644 |
--- a/pkg/compiler/lib/src/js_backend/backend_impact.dart |
+++ b/pkg/compiler/lib/src/js_backend/backend_impact.dart |
@@ -306,16 +306,6 @@ class BackendImpacts { |
return _constSymbol; |
} |
- BackendImpact _incDecOperation; |
- |
- BackendImpact get incDecOperation { |
- if (_incDecOperation == null) { |
- _incDecOperation = |
- _needsInt('Needed for the `+ 1` or `- 1` operation of ++/--.'); |
- } |
- return _incDecOperation; |
- } |
- |
/// Helper for registering that `int` is needed. |
BackendImpact _needsInt(String reason) { |
// TODO(johnniwinther): Register [reason] for use in dump-info. |