blob: cc0577e8c1a293a22afa87847b6b6fc7e012e047 [file] [log] [blame]
// Copyright (c) 2020, 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.transformations.value_class;
import '../ast.dart';
import '../kernel.dart';
import '../visitor.dart';
Component transformComponent(Component component) {
new ValueClassTransformer().visitComponent(component);
return component;
}
class ValueClassTransformer extends Transformer {}