Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
fixup! updated with more build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhash Sharma committed Dec 5, 2016
1 parent 99014d4 commit 554cbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/noInferredEmptyObjectTypeRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class NoInferredEmptyObjectTypeRule extends Lint.ProgramAwareRuleWalker {
/* tslint:disable:no-bitwise */
return ((o.flags & ts.TypeFlags.Reference) === ts.TypeFlags.Reference);
/* tslint:enable:no-bitwise */
}
};
if (nodeTypeArgs === undefined) { // type args have not been specified explicitly
let objType = checker.getTypeAtLocation(node) as ts.TypeReference;
if (isObjectReference(objType) && objType.typeArguments !== undefined) {
Expand Down

0 comments on commit 554cbfe

Please sign in to comment.