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

Side by Side Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 844493005: Update cache size on analysis start/stop. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/analysis_server/lib/src/operation/operation_analysis.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // This code was auto-generated, is not intended to be edited, and is subject to 5 // This code was auto-generated, is not intended to be edited, and is subject to
6 // significant change. Please see the README file for more information. 6 // significant change. Please see the README file for more information.
7 7
8 library engine; 8 library engine;
9 9
10 import "dart:math" as math; 10 import "dart:math" as math;
(...skipping 6499 matching lines...) Expand 10 before | Expand all | Expand 10 after
6510 } 6510 }
6511 6511
6512 /** 6512 /**
6513 * Instances of the class `AnalysisOptions` represent a set of analysis options used to 6513 * Instances of the class `AnalysisOptions` represent a set of analysis options used to
6514 * control the behavior of an analysis context. 6514 * control the behavior of an analysis context.
6515 */ 6515 */
6516 class AnalysisOptionsImpl implements AnalysisOptions { 6516 class AnalysisOptionsImpl implements AnalysisOptions {
6517 /** 6517 /**
6518 * The maximum number of sources for which data should be kept in the cache. 6518 * The maximum number of sources for which data should be kept in the cache.
6519 */ 6519 */
6520 static int DEFAULT_CACHE_SIZE = 64; 6520 static const int DEFAULT_CACHE_SIZE = 64;
6521 6521
6522 /** 6522 /**
6523 * The default value for enabling deferred loading. 6523 * The default value for enabling deferred loading.
6524 */ 6524 */
6525 @deprecated 6525 @deprecated
6526 static bool DEFAULT_ENABLE_DEFERRED_LOADING = true; 6526 static bool DEFAULT_ENABLE_DEFERRED_LOADING = true;
6527 6527
6528 /** 6528 /**
6529 * The default value for enabling enum support. 6529 * The default value for enabling enum support.
6530 */ 6530 */
(...skipping 5717 matching lines...) Expand 10 before | Expand all | Expand 10 after
12248 if (element.id == _id) { 12248 if (element.id == _id) {
12249 result = element; 12249 result = element;
12250 throw new _ElementByIdFinderException(); 12250 throw new _ElementByIdFinderException();
12251 } 12251 }
12252 super.visitElement(element); 12252 super.visitElement(element);
12253 } 12253 }
12254 } 12254 }
12255 12255
12256 class _ElementByIdFinderException { 12256 class _ElementByIdFinderException {
12257 } 12257 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/operation/operation_analysis.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698