Skip to content

Commit 45ebecf

Browse files
committed
Lint fixes
1 parent 65b9f70 commit 45ebecf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/deprecatedCompat/5.0/identifierProperties.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
import { Identifier, NodeFlags, addObjectAllocatorPatcher, idKeyword } from "../_namespaces/ts";
1+
import {
2+
addObjectAllocatorPatcher,
3+
Identifier,
4+
idKeyword,
5+
NodeFlags,
6+
} from "../_namespaces/ts";
27
import { deprecate } from "../deprecate";
38

49
addObjectAllocatorPatcher(objectAllocator => {
@@ -7,7 +12,7 @@ addObjectAllocatorPatcher(objectAllocator => {
712
const propertyNames = Object.getOwnPropertyNames(Identifier.prototype);
813
if (!propertyNames.includes("originalKeywordKind")) {
914
Object.defineProperty(Identifier.prototype, "originalKeywordKind", {
10-
get: deprecate(function(this: Identifier) {
15+
get: deprecate(function (this: Identifier) {
1116
return idKeyword(this);
1217
}, {
1318
name: "originalKeywordKind",

0 commit comments

Comments
 (0)