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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 1573283003: Add a new 'summary' performance tag. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « pkg/analyzer/lib/src/context/context.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index f28be2e4e4b0cbbc936e37241b3ee258322eeddb..698aa90dec14f602e90e45cdb6325b1ba3c2c147 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -675,7 +675,7 @@ class AnalysisDelta {
}
/**
- * Appendto the given [buffer] all sources with the given analysis [level],
+ * Append to the given [buffer] all sources with the given analysis [level],
* prefixed with a label and a separator if [needsSeparator] is `true`.
*/
bool _appendSources(
@@ -1780,7 +1780,7 @@ class ChangeSet_ContentChange {
/**
* Initialize a newly created change object to represent a change to the
* content of a source. The [contents] is the new contents of the source. The
- * [offse] ist the offset into the current contents. The [oldLength] is the
+ * [offset] ist the offset into the current contents. The [oldLength] is the
* number of characters in the original contents that were replaced. The
* [newLength] is the number of characters in the replacement text.
*/
@@ -2116,7 +2116,7 @@ class PerformanceStatistics {
/**
* The [PerformanceTag] for time spent in other phases of analysis.
*/
- static PerformanceTag performAnaysis = new PerformanceTag('performAnaysis');
+ static PerformanceTag performAnalysis = new PerformanceTag('performAnalysis');
/**
* The [PerformanceTag] for time spent in the analysis task visitor after
@@ -2137,6 +2137,11 @@ class PerformanceStatistics {
*/
static PerformanceTag incrementalAnalysis =
new PerformanceTag('incrementalAnalysis');
+
+ /**
+ * The [PerformanceTag] for time spent in summaries support.
+ */
+ static PerformanceTag summary = new PerformanceTag('summary');
}
/**
« no previous file with comments | « pkg/analyzer/lib/src/context/context.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698