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

Unified Diff: test/regression/other/analysis_server.unit

Issue 1255643002: New, simpler and faster line splitter. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Optimize nesting. Reformat. Created 5 years, 5 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 | « test/regression/0300/0380.unit ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/regression/other/analysis_server.unit
diff --git a/test/regression/other/analysis_server.unit b/test/regression/other/analysis_server.unit
index 4ad513c76ac4e3475948c744f97eb6e4166a6b3c..decf2364e352a5167931932fcc67b0e5cc8d2e90 100644
--- a/test/regression/other/analysis_server.unit
+++ b/test/regression/other/analysis_server.unit
@@ -166,11 +166,10 @@ final ListResultDescriptor<AnalysisError> HINTS =
}
<<<
main() {
- contextsChangedRaw(
- new ContextsChangedEvent(
- added: event.added.length > 0 ? [mockContext] : [],
- changed: event.changed.length > 0 ? [mockContext] : [],
- removed: event.removed.length > 0 ? [mockContext] : []));
+ contextsChangedRaw(new ContextsChangedEvent(
+ added: event.added.length > 0 ? [mockContext] : [],
+ changed: event.changed.length > 0 ? [mockContext] : [],
+ removed: event.removed.length > 0 ? [mockContext] : []));
}
>>> (indent 2)
void emitEmptyObjectClass(String className, ImpliedType impliedType) {
« no previous file with comments | « test/regression/0300/0380.unit ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698