blob: ad9214f49c4e697184c47f7a809fdc9daa0863fd [file] [log] [blame]
// Copyright (c) 2012, 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 dart2js.common.resolution;
import '../constants/expressions.dart' show ConstantExpression;
import '../elements/entities.dart';
import '../universe/world_impact.dart' show WorldImpact;
import '../universe/feature.dart';
class ResolutionImpact extends WorldImpact {
const ResolutionImpact();
Iterable<Feature> get features => const <Feature>[];
Iterable<MapLiteralUse> get mapLiterals => const <MapLiteralUse>[];
Iterable<ListLiteralUse> get listLiterals => const <ListLiteralUse>[];
Iterable<String> get constSymbolNames => const <String>[];
Iterable<ConstantExpression> get constantLiterals =>
const <ConstantExpression>[];
Iterable<ClassEntity> get seenClasses => const <ClassEntity>[];
Iterable<RuntimeTypeUse> get runtimeTypeUses => const <RuntimeTypeUse>[];
Iterable<dynamic> get nativeData => const <dynamic>[];
Iterable<GenericInstantiation> get genericInstantiations =>
const <GenericInstantiation>[];
}