packages/babel-types/src/comments/inheritInnerComments.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
import inherit from "../utils/inherit";

export default function inheritInnerComments(
  child: Object,
  parent: Object,
): void {
  inherit("innerComments", child, parent);
}