From e5e405ee6e180cf62befdef12ac43a91ea484bc2 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Wed, 28 Jun 2023 13:17:09 +0200 Subject: [PATCH] refactor(compiler): add required file header Add required file header. --- .../pipeline/src/phases/creation_var_colocation.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/compiler/src/template/pipeline/src/phases/creation_var_colocation.ts b/packages/compiler/src/template/pipeline/src/phases/creation_var_colocation.ts index 567bb744f2f..1268d4c5924 100644 --- a/packages/compiler/src/template/pipeline/src/phases/creation_var_colocation.ts +++ b/packages/compiler/src/template/pipeline/src/phases/creation_var_colocation.ts @@ -1,3 +1,11 @@ +/** + * @license + * Copyright Google LLC All Rights Reserved. + * + * Use of this source code is governed by an MIT-style license that can be + * found in the LICENSE file at https://angular.io/license + */ + import * as o from '../../../../output/output_ast'; import * as ir from '../../ir'; import type {CompilationJob, CompilationUnit} from '../compilation';