blob: 8bdf691cd62a1eda872242b2e6b3506c38f065e5 [file] [log] [blame]
// Copyright (c) 2017, 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 kernel.transformation.generic_types_reification;
import '../ast.dart' show Program;
import '../core_types.dart' show CoreTypes;
import '../transformations/reify/reify_transformer.dart' as reify
show transformProgram;
Program transformProgram(CoreTypes coreTypes, Program program) {
return reify.transformProgram(coreTypes, program);
}