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

Side by Side Diff: sdk/pkg/analysis_server/lib/src/analysis_server.dart

Issue 2835053005: Add stopgap for angular autocompletion. (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library analysis.server; 5 library analysis.server;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:core'; 9 import 'dart:core';
10 import 'dart:io' as io; 10 import 'dart:io' as io;
(...skipping 2337 matching lines...) Expand 10 before | Expand all | Expand 10 after
2348 /** 2348 /**
2349 * The [PerformanceTag] for time spent in server request handlers. 2349 * The [PerformanceTag] for time spent in server request handlers.
2350 */ 2350 */
2351 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); 2351 static PerformanceTag serverRequests = new PerformanceTag('serverRequests');
2352 2352
2353 /** 2353 /**
2354 * The [PerformanceTag] for time spent in split store microtasks. 2354 * The [PerformanceTag] for time spent in split store microtasks.
2355 */ 2355 */
2356 static PerformanceTag splitStore = new PerformanceTag('splitStore'); 2356 static PerformanceTag splitStore = new PerformanceTag('splitStore');
2357 } 2357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698