Skip to content

Commit

Permalink
chore: add copyright headers to new modules
Browse files Browse the repository at this point in the history
  • Loading branch information
divmain committed Mar 2, 2023
1 parent 2bba09a commit 6224ace
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/@lwc/template-compiler/src/codegen/expression.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/

import { walk } from 'estree-walker';
import * as t from '../shared/estree';
import { ComplexExpression } from '../shared/types';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/

import { parseExpressionAt } from 'acorn';
import { Document, DocumentFragment, ParsingError, ParserOptions } from 'parse5';
import { ParserDiagnostics, invariant } from '@lwc/errors';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/

export * from './types';
export * from './validate';
export * from './html';
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/

import type { Node as AcornNode } from 'acorn';

type StartingIdx = number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/

import { ParserDiagnostics, invariant } from '@lwc/errors';
import { walk } from 'estree-walker';
import * as t from '../../shared/estree';
Expand Down

0 comments on commit 6224ace

Please sign in to comment.