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

Unified Diff: pkg/analysis_server/lib/src/computer/computer_highlights.dart

Issue 363723002: Change HashMap declarations back to Map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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/analysis_server/lib/src/computer/computer_highlights.dart
diff --git a/pkg/analysis_server/lib/src/computer/computer_highlights.dart b/pkg/analysis_server/lib/src/computer/computer_highlights.dart
index 26772f2cb1fcd980b71c9e47e189b20ff5f97f85..483ce20a84ec16a1b23477fc351f61a8007f7986 100644
--- a/pkg/analysis_server/lib/src/computer/computer_highlights.dart
+++ b/pkg/analysis_server/lib/src/computer/computer_highlights.dart
@@ -18,14 +18,14 @@ import 'package:analyzer/src/generated/scanner.dart';
class DartUnitHighlightsComputer {
final CompilationUnit _unit;
- final List<HashMap<String, Object>> _regions = <HashMap<String, Object>>[];
+ final List<Map<String, Object>> _regions = <HashMap<String, Object>>[];
DartUnitHighlightsComputer(this._unit);
/**
* Returns the computed highlight regions, not `null`.
*/
- List<HashMap<String, Object>> compute() {
+ List<Map<String, Object>> compute() {
_unit.accept(new _DartUnitHighlightsComputerVisitor(this));
return _regions;
}
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/lib/src/computer/computer_navigation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698