| OLD | NEW |
| 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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 _priorityOrder = newPriorityOrder; | 1110 _priorityOrder = newPriorityOrder; |
| 1111 } | 1111 } |
| 1112 } | 1112 } |
| 1113 this._options.analyzeFunctionBodies = options.analyzeFunctionBodies; | 1113 this._options.analyzeFunctionBodies = options.analyzeFunctionBodies; |
| 1114 this._options.generateSdkErrors = options.generateSdkErrors; | 1114 this._options.generateSdkErrors = options.generateSdkErrors; |
| 1115 this._options.dart2jsHint = options.dart2jsHint; | 1115 this._options.dart2jsHint = options.dart2jsHint; |
| 1116 this._options.hint = options.hint; | 1116 this._options.hint = options.hint; |
| 1117 this._options.incremental = options.incremental; | 1117 this._options.incremental = options.incremental; |
| 1118 this._options.incrementalApi = options.incrementalApi; | 1118 this._options.incrementalApi = options.incrementalApi; |
| 1119 this._options.incrementalValidation = options.incrementalValidation; | 1119 this._options.incrementalValidation = options.incrementalValidation; |
| 1120 this._options.lint = options.lint; |
| 1120 this._options.preserveComments = options.preserveComments; | 1121 this._options.preserveComments = options.preserveComments; |
| 1121 _generateSdkErrors = options.generateSdkErrors; | 1122 _generateSdkErrors = options.generateSdkErrors; |
| 1122 if (needsRecompute) { | 1123 if (needsRecompute) { |
| 1123 _invalidateAllLocalResolutionInformation(false); | 1124 _invalidateAllLocalResolutionInformation(false); |
| 1124 } | 1125 } |
| 1125 } | 1126 } |
| 1126 | 1127 |
| 1127 @override | 1128 @override |
| 1128 void set analysisPriorityOrder(List<Source> sources) { | 1129 void set analysisPriorityOrder(List<Source> sources) { |
| 1129 if (sources == null || sources.isEmpty) { | 1130 if (sources == null || sources.isEmpty) { |
| (...skipping 11183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12313 if (element.id == _id) { | 12314 if (element.id == _id) { |
| 12314 result = element; | 12315 result = element; |
| 12315 throw new _ElementByIdFinderException(); | 12316 throw new _ElementByIdFinderException(); |
| 12316 } | 12317 } |
| 12317 super.visitElement(element); | 12318 super.visitElement(element); |
| 12318 } | 12319 } |
| 12319 } | 12320 } |
| 12320 | 12321 |
| 12321 class _ElementByIdFinderException { | 12322 class _ElementByIdFinderException { |
| 12322 } | 12323 } |
| OLD | NEW |