mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
3f6e337e87
The check for load error on completion of async load was very inefficient. Added a Hash set to ensure we don't repeatedly traverse through a library when trying to establish transitive load errors. R=iposva@google.com Review URL: https://codereview.chromium.org//573293004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@40422 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
837 B
Dart
28 lines
837 B
Dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library lib5;
|
|
|
|
import 'issue_1751477_lib2.dart';
|
|
import 'issue_1751477_lib3.dart';
|
|
import 'issue_1751477_lib4.dart';
|
|
import 'issue_1751477_lib1.dart';
|
|
import 'issue_1751477_lib6.dart';
|
|
import 'issue_1751477_lib7.dart';
|
|
import 'issue_1751477_lib8.dart';
|
|
import 'issue_1751477_lib9.dart';
|
|
|
|
import 'issue_1751477_lib11.dart';
|
|
import 'issue_1751477_lib21.dart';
|
|
import 'issue_1751477_lib31.dart';
|
|
import 'issue_1751477_lib41.dart';
|
|
import 'issue_1751477_lib51.dart';
|
|
import 'issue_1751477_lib61.dart';
|
|
import 'issue_1751477_lib71.dart';
|
|
import 'issue_1751477_lib81.dart';
|
|
import 'issue_1751477_lib91.dart';
|
|
|
|
lib5_func()
|
|
{
|
|
}
|