| 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:collection'; | 10 import 'dart:collection'; |
| 11 import "dart:math" as math; | 11 import "dart:math" as math; |
| 12 | 12 |
| 13 import 'package:analyzer/src/task/task_dart.dart'; | 13 import 'package:analyzer/src/task/task_dart.dart'; |
| 14 | 14 |
| 15 import 'java_core.dart'; | 15 import 'java_core.dart'; |
| 16 import 'java_engine.dart'; | 16 import 'java_engine.dart'; |
| 17 import 'utilities_collection.dart'; | 17 import 'utilities_collection.dart'; |
| 18 import 'utilities_general.dart'; | 18 import 'utilities_general.dart'; |
| 19 import 'instrumentation.dart'; | 19 import 'instrumentation.dart'; |
| 20 import 'error.dart'; | 20 import 'error.dart'; |
| 21 import 'error_verifier.dart'; |
| 21 import 'source.dart'; | 22 import 'source.dart'; |
| 22 import 'scanner.dart'; | 23 import 'scanner.dart'; |
| 23 import 'ast.dart'; | 24 import 'ast.dart'; |
| 24 import 'parser.dart' show Parser, IncrementalParser; | 25 import 'parser.dart' show Parser, IncrementalParser; |
| 25 import 'sdk.dart' show DartSdk; | 26 import 'sdk.dart' show DartSdk; |
| 26 import 'constant.dart'; | 27 import 'constant.dart'; |
| 27 import 'element.dart'; | 28 import 'element.dart'; |
| 28 import 'resolver.dart'; | 29 import 'resolver.dart'; |
| 29 import 'html.dart' as ht; | 30 import 'html.dart' as ht; |
| 30 | 31 |
| (...skipping 13528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13559 _index++; | 13560 _index++; |
| 13560 if (_index >= _manager._workQueues[_queueIndex].length) { | 13561 if (_index >= _manager._workQueues[_queueIndex].length) { |
| 13561 _index = 0; | 13562 _index = 0; |
| 13562 _queueIndex++; | 13563 _queueIndex++; |
| 13563 while (_queueIndex < _manager._workQueues.length && _manager._workQueues[_
queueIndex].isEmpty) { | 13564 while (_queueIndex < _manager._workQueues.length && _manager._workQueues[_
queueIndex].isEmpty) { |
| 13564 _queueIndex++; | 13565 _queueIndex++; |
| 13565 } | 13566 } |
| 13566 } | 13567 } |
| 13567 } | 13568 } |
| 13568 } | 13569 } |
| OLD | NEW |