Index: pkg/analysis_server/lib/src/computer/computer_outline.dart |
diff --git a/pkg/analysis_server/lib/src/computer/computer_outline.dart b/pkg/analysis_server/lib/src/computer/computer_outline.dart |
index 9b4c9b7170f0446995d3985ef016913b0656006c..b76b6f64d4e656fc82741e00d11c35e41d915f4b 100644 |
--- a/pkg/analysis_server/lib/src/computer/computer_outline.dart |
+++ b/pkg/analysis_server/lib/src/computer/computer_outline.dart |
@@ -199,7 +199,7 @@ class DartUnitOutlineComputer { |
if (constructorNameNode != null) { |
String constructorName = constructorNameNode.name; |
isPrivate = Identifier.isPrivateName(constructorName); |
- name += '.${constructorName}'; |
+ name += '.$constructorName'; |
offset = constructorNameNode.offset; |
length = constructorNameNode.length; |
} |