Skip to content

Commit

Permalink
Upstream http://cl/416087593
Browse files Browse the repository at this point in the history
  • Loading branch information
bicknellr committed Apr 27, 2022
1 parent 65039ee commit ec36597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/legacy/legacy-data-mixin.js
Expand Up @@ -8,7 +8,6 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/

import { Class } from './class.js';
import { Polymer } from '../../polymer-legacy.js';
import { dedupingMixin } from '../utils/mixin.js';
import { templatize } from '../utils/templatize.js';
Expand Down Expand Up @@ -148,6 +147,7 @@ export const LegacyDataMixin = dedupingMixin(superClass => {
// LegacyDataMixin is applied to base class _before_ metaprogramming, to
// ensure override of _addPropertyEffect et.al. are used by metaprogramming
// performed in _finalizeClass
const Class = Polymer.Class;
Polymer.Class = (info, mixin) => Class(info,
superClass => mixin ?
mixin(LegacyDataMixin(superClass)) :
Expand Down
3 changes: 1 addition & 2 deletions lib/utils/wrap.d.ts
@@ -1,4 +1,3 @@
// tslint:disable:variable-name Describing an API that's defined elsewhere.


export {};
export const wrap: <T extends Node>(node: T) => T;

0 comments on commit ec36597

Please sign in to comment.