Skip to content

Commit

Permalink
Roll forward of "Extend the CheckRedundantNullabilityModifier linter …
Browse files Browse the repository at this point in the history
…pass to also check for missing nullability modifiers according to the style guide."

To prevent spurious warnings on template parameter types (which are allowed to be unqualified), do not warn on type names that appear in @template annotations in the same file. Because the check is purely syntactical (no type information), this incurs in some false positives and negatives. However, they are rare enough that it seems worthwhile to keep this check in the linter.

Also take the opportunity to add "void" to the list of primitive type names.

*** Reason for rollback ***

Added special-casing of template parameter types to prevent spurious warnings.

*** Original change description ***

Automated g4 rollback of changelist 212058481.

*** Reason for rollback ***

The new linter will incorrectly warn on an unqualified template parameter, e.g.

    /** @constructor @template T */ function Foo() {}
    /** @param {T} x */ Foo.prototype.bar = function(x) {};

will warn that the T in @param needs a ! or ?.

Rolling back to prevent a bad linter release.

*** Original change description ***

Extend the CheckRedundantNullabilityModifier linter pass to also check for missing nullability...

***

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=212655267
  • Loading branch information
tjgq authored and blickly committed Sep 13, 2018
1 parent 3ec6aa2 commit 9c5a5ae
Show file tree
Hide file tree
Showing 14 changed files with 454 additions and 290 deletions.
4 changes: 2 additions & 2 deletions src/com/google/javascript/jscomp/DefaultPassConfig.java
Expand Up @@ -51,10 +51,10 @@
import com.google.javascript.jscomp.lint.CheckJSDocStyle; import com.google.javascript.jscomp.lint.CheckJSDocStyle;
import com.google.javascript.jscomp.lint.CheckMissingSemicolon; import com.google.javascript.jscomp.lint.CheckMissingSemicolon;
import com.google.javascript.jscomp.lint.CheckNoMutatedEs6Exports; import com.google.javascript.jscomp.lint.CheckNoMutatedEs6Exports;
import com.google.javascript.jscomp.lint.CheckNullabilityModifiers;
import com.google.javascript.jscomp.lint.CheckNullableReturn; import com.google.javascript.jscomp.lint.CheckNullableReturn;
import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject; import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject;
import com.google.javascript.jscomp.lint.CheckPrototypeProperties; import com.google.javascript.jscomp.lint.CheckPrototypeProperties;
import com.google.javascript.jscomp.lint.CheckRedundantNullabilityModifier;
import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted; import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted;
import com.google.javascript.jscomp.lint.CheckUnusedLabels; import com.google.javascript.jscomp.lint.CheckUnusedLabels;
import com.google.javascript.jscomp.lint.CheckUselessBlocks; import com.google.javascript.jscomp.lint.CheckUselessBlocks;
Expand Down Expand Up @@ -1971,9 +1971,9 @@ protected HotSwapCompilerPass create(AbstractCompiler compiler) {
.add(new CheckInterfaces(compiler)) .add(new CheckInterfaces(compiler))
.add(new CheckJSDocStyle(compiler)) .add(new CheckJSDocStyle(compiler))
.add(new CheckMissingSemicolon(compiler)) .add(new CheckMissingSemicolon(compiler))
.add(new CheckNullabilityModifiers(compiler))
.add(new CheckPrimitiveAsObject(compiler)) .add(new CheckPrimitiveAsObject(compiler))
.add(new CheckPrototypeProperties(compiler)) .add(new CheckPrototypeProperties(compiler))
.add(new CheckRedundantNullabilityModifier(compiler))
.add(new CheckUnusedLabels(compiler)) .add(new CheckUnusedLabels(compiler))
.add(new CheckUselessBlocks(compiler)); .add(new CheckUselessBlocks(compiler));
return combineChecks(compiler, callbacks.build()); return combineChecks(compiler, callbacks.build());
Expand Down
18 changes: 9 additions & 9 deletions src/com/google/javascript/jscomp/DiagnosticGroups.java
Expand Up @@ -31,10 +31,10 @@
import com.google.javascript.jscomp.lint.CheckJSDocStyle; import com.google.javascript.jscomp.lint.CheckJSDocStyle;
import com.google.javascript.jscomp.lint.CheckMissingSemicolon; import com.google.javascript.jscomp.lint.CheckMissingSemicolon;
import com.google.javascript.jscomp.lint.CheckNoMutatedEs6Exports; import com.google.javascript.jscomp.lint.CheckNoMutatedEs6Exports;
import com.google.javascript.jscomp.lint.CheckNullabilityModifiers;
import com.google.javascript.jscomp.lint.CheckNullableReturn; import com.google.javascript.jscomp.lint.CheckNullableReturn;
import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject; import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject;
import com.google.javascript.jscomp.lint.CheckPrototypeProperties; import com.google.javascript.jscomp.lint.CheckPrototypeProperties;
import com.google.javascript.jscomp.lint.CheckRedundantNullabilityModifier;
import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted; import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted;
import com.google.javascript.jscomp.lint.CheckUnusedLabels; import com.google.javascript.jscomp.lint.CheckUnusedLabels;
import com.google.javascript.jscomp.lint.CheckUselessBlocks; import com.google.javascript.jscomp.lint.CheckUselessBlocks;
Expand Down Expand Up @@ -580,10 +580,11 @@ public DiagnosticGroup forName(String name) {
CheckInterfaces.INTERFACE_FUNCTION_NOT_EMPTY, CheckInterfaces.INTERFACE_FUNCTION_NOT_EMPTY,
CheckInterfaces.INTERFACE_SHOULD_NOT_TAKE_ARGS, CheckInterfaces.INTERFACE_SHOULD_NOT_TAKE_ARGS,
CheckMissingSemicolon.MISSING_SEMICOLON, CheckMissingSemicolon.MISSING_SEMICOLON,
CheckNullabilityModifiers.MISSING_NULLABILITY_MODIFIER_JSDOC,
CheckNullabilityModifiers.REDUNDANT_NULLABILITY_MODIFIER_JSDOC,
CheckPrimitiveAsObject.NEW_PRIMITIVE_OBJECT, CheckPrimitiveAsObject.NEW_PRIMITIVE_OBJECT,
CheckPrimitiveAsObject.PRIMITIVE_OBJECT_DECLARATION, CheckPrimitiveAsObject.PRIMITIVE_OBJECT_DECLARATION,
CheckPrototypeProperties.ILLEGAL_PROTOTYPE_MEMBER, CheckPrototypeProperties.ILLEGAL_PROTOTYPE_MEMBER,
CheckRedundantNullabilityModifier.REDUNDANT_NULLABILITY_MODIFIER_JSDOC,
CheckRequiresAndProvidesSorted.DUPLICATE_REQUIRE, CheckRequiresAndProvidesSorted.DUPLICATE_REQUIRE,
CheckRequiresAndProvidesSorted.REQUIRES_NOT_SORTED, CheckRequiresAndProvidesSorted.REQUIRES_NOT_SORTED,
CheckRequiresAndProvidesSorted.PROVIDES_NOT_SORTED, CheckRequiresAndProvidesSorted.PROVIDES_NOT_SORTED,
Expand Down Expand Up @@ -659,7 +660,8 @@ public DiagnosticGroup forName(String name) {
// the file level is by using a whitelist file. // the file level is by using a whitelist file.
@GwtIncompatible("Conformance") @GwtIncompatible("Conformance")
public static final DiagnosticGroup CONFORMANCE_VIOLATIONS = public static final DiagnosticGroup CONFORMANCE_VIOLATIONS =
DiagnosticGroups.registerGroup("conformanceViolations", DiagnosticGroups.registerGroup(
"conformanceViolations",
CheckConformance.CONFORMANCE_VIOLATION, CheckConformance.CONFORMANCE_VIOLATION,
CheckConformance.CONFORMANCE_POSSIBLE_VIOLATION); CheckConformance.CONFORMANCE_POSSIBLE_VIOLATION);


Expand All @@ -670,16 +672,14 @@ public DiagnosticGroup forName(String name) {


public static final DiagnosticGroup MISSING_POLYFILL = public static final DiagnosticGroup MISSING_POLYFILL =
DiagnosticGroups.registerGroup( DiagnosticGroups.registerGroup(
"missingPolyfill", "missingPolyfill", RewritePolyfills.INSUFFICIENT_OUTPUT_VERSION_ERROR);
RewritePolyfills.INSUFFICIENT_OUTPUT_VERSION_ERROR);


// For internal use only, so there are no constants for these groups. // For internal use only, so there are no constants for these groups.
static { static {
DiagnosticGroups.registerGroup("invalidProvide", DiagnosticGroups.registerGroup(
ProcessClosurePrimitives.INVALID_PROVIDE_ERROR); "invalidProvide", ProcessClosurePrimitives.INVALID_PROVIDE_ERROR);


DiagnosticGroups.registerGroup("es6Typed", DiagnosticGroups.registerGroup("es6Typed", RhinoErrorReporter.MISPLACED_TYPE_SYNTAX);
RhinoErrorReporter.MISPLACED_TYPE_SYNTAX);


DiagnosticGroups.registerDeprecatedGroup("duplicateZipContents"); DiagnosticGroups.registerDeprecatedGroup("duplicateZipContents");
} }
Expand Down
4 changes: 2 additions & 2 deletions src/com/google/javascript/jscomp/LintPassConfig.java
Expand Up @@ -22,9 +22,9 @@
import com.google.javascript.jscomp.lint.CheckInterfaces; import com.google.javascript.jscomp.lint.CheckInterfaces;
import com.google.javascript.jscomp.lint.CheckJSDocStyle; import com.google.javascript.jscomp.lint.CheckJSDocStyle;
import com.google.javascript.jscomp.lint.CheckMissingSemicolon; import com.google.javascript.jscomp.lint.CheckMissingSemicolon;
import com.google.javascript.jscomp.lint.CheckNullabilityModifiers;
import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject; import com.google.javascript.jscomp.lint.CheckPrimitiveAsObject;
import com.google.javascript.jscomp.lint.CheckPrototypeProperties; import com.google.javascript.jscomp.lint.CheckPrototypeProperties;
import com.google.javascript.jscomp.lint.CheckRedundantNullabilityModifier;
import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted; import com.google.javascript.jscomp.lint.CheckRequiresAndProvidesSorted;
import com.google.javascript.jscomp.lint.CheckUnusedLabels; import com.google.javascript.jscomp.lint.CheckUnusedLabels;
import com.google.javascript.jscomp.lint.CheckUselessBlocks; import com.google.javascript.jscomp.lint.CheckUselessBlocks;
Expand Down Expand Up @@ -73,7 +73,7 @@ protected CompilerPass create(AbstractCompiler compiler) {
new CheckSuper(compiler), new CheckSuper(compiler),
new CheckPrimitiveAsObject(compiler), new CheckPrimitiveAsObject(compiler),
new ClosureCheckModule(compiler), new ClosureCheckModule(compiler),
new CheckRedundantNullabilityModifier(compiler), new CheckNullabilityModifiers(compiler),
new CheckRequiresAndProvidesSorted(compiler), new CheckRequiresAndProvidesSorted(compiler),
new CheckSideEffects( new CheckSideEffects(
compiler, /* report */ true, /* protectSideEffectFreeCode */ false), compiler, /* report */ true, /* protectSideEffectFreeCode */ false),
Expand Down
205 changes: 205 additions & 0 deletions src/com/google/javascript/jscomp/lint/CheckNullabilityModifiers.java
@@ -0,0 +1,205 @@
/*
* Copyright 2018 The Closure Compiler Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.javascript.jscomp.lint;

import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import com.google.javascript.jscomp.AbstractCompiler;
import com.google.javascript.jscomp.CompilerPass;
import com.google.javascript.jscomp.DiagnosticType;
import com.google.javascript.jscomp.NodeTraversal;
import com.google.javascript.jscomp.NodeTraversal.AbstractPostOrderCallback;
import com.google.javascript.jscomp.NodeUtil;
import com.google.javascript.rhino.JSDocInfo;
import com.google.javascript.rhino.JSTypeExpression;
import com.google.javascript.rhino.Node;
import com.google.javascript.rhino.Token;
import java.util.HashSet;

/**
* Checks for missing or redundant nullability modifiers.
*
* <p>Primitive and literal types should not be preceded by a `!` modifier. Reference types must be
* preceded by a `?` or `!` modifier.
*/
public class CheckNullabilityModifiers extends AbstractPostOrderCallback implements CompilerPass {

/** The diagnostic for a missing nullability modifier. */
public static final DiagnosticType MISSING_NULLABILITY_MODIFIER_JSDOC =
DiagnosticType.disabled(
"JSC_MISSING_NULLABILITY_MODIFIER_JSDOC",
"{0} is a reference type with no nullability modifier, "
+ "which is disallowed by the style guide.\n"
+ "Please add a '!' to make it explicitly non-nullable, "
+ "or a '?' to make it explicitly nullable.");

/** The diagnostic for a redundant nullability modifier. */
public static final DiagnosticType REDUNDANT_NULLABILITY_MODIFIER_JSDOC =
DiagnosticType.disabled(
"JSC_REDUNDANT_NULLABILITY_MODIFIER_JSDOC",
"{0} is a non-reference type which is already non-nullable.\n"
+ "Please remove the redundant '!', which is disallowed by the style guide.");

/** The set of primitive type names. Note that `void` is a synonym for `undefined`. */
private static final ImmutableSet<String> PRIMITIVE_TYPE_NAMES =
ImmutableSet.of("boolean", "number", "string", "symbol", "undefined", "void", "null");

private final AbstractCompiler compiler;

// Store the candidate warnings and template types found while traversing a single script node.
private final HashSet<Node> redundantCandidates = new HashSet<>();
private final HashSet<Node> missingCandidates = new HashSet<>();
private final HashSet<String> templateTypeNames = new HashSet<>();

public CheckNullabilityModifiers(AbstractCompiler compiler) {
this.compiler = compiler;
}

@Override
public void process(Node externs, Node root) {
NodeTraversal.traverseRoots(compiler, this, externs, root);
}

@Override
public void visit(NodeTraversal t, Node n, Node parent) {
JSDocInfo info = n.getJSDocInfo();
if (info != null) {
for (String typeName : info.getTemplateTypeNames()) {
templateTypeNames.add(typeName);
}
if (info.hasType()) {
visitTypeExpression(info.getType(), false);
}
for (String param : info.getParameterNames()) {
if (info.hasParameterType(param)) {
visitTypeExpression(info.getParameterType(param), false);
}
}
if (info.hasReturnType()) {
visitTypeExpression(info.getReturnType(), false);
}
if (info.hasEnumParameterType()) {
// JSDocInfoParser wraps the @enum type in an artificial '!' if it's not a primitive type.
// Thus a missing modifier warning can never trigger, but a redundant modifier warning can.
visitTypeExpression(info.getEnumParameterType(), false);
}
if (info.hasTypedefType()) {
visitTypeExpression(info.getTypedefType(), false);
}
if (info.hasThisType()) {
// JSDocInfoParser wraps the @this type in an artificial '!'. Thus a missing modifier
// warning can never trigger, but a top-level '!' should be ignored if it precedes a
// primitive or literal type; otherwise it will trigger a spurious redundant modifier
// warning.
visitTypeExpression(info.getThisType(), true);
}
for (JSTypeExpression expr : info.getThrownTypes()) {
visitTypeExpression(expr, false);
}
// JSDocInfoParser enforces the @extends and @implements types to be unqualified in the source
// code, so we don't need to check them.
}

if (n.isScript()) {
// If exiting a script node, report applicable warnings and clear the maps.
report(t);
redundantCandidates.clear();
missingCandidates.clear();
templateTypeNames.clear();
return;
}
}

private void report(NodeTraversal t) {
for (Node n : missingCandidates) {
if (shouldReport(n)) {
t.report(n, MISSING_NULLABILITY_MODIFIER_JSDOC, getReportedTypeName(n));
}
}
for (Node n : redundantCandidates) {
if (shouldReport(n)) {
// Report on parent so that modifier is also highlighted.
t.report(n.getParent(), REDUNDANT_NULLABILITY_MODIFIER_JSDOC, getReportedTypeName(n));
}
}
}

private boolean shouldReport(Node n) {
// Ignore type names that appear in @template clauses in the same source file. In rare cases,
// this may cause a false negative (if the name is used in a non-template capacity in the same
// file) or a false positive (if the name is used in a template capacity in a separate file),
// but it makes this check possible in the absence of type information. If the style guide ever
// mandates template types (and nothing else) to be all-caps, we can use that assumption to make
// this check more precise.
return !n.isString() || !templateTypeNames.contains(n.getString());
}

private void visitTypeExpression(JSTypeExpression expr, boolean hasArtificialTopLevelBang) {
Node root = expr.getRoot();
NodeUtil.visitPreOrder(
root,
(Node node) -> {
Node parent = node.getParent();

boolean isPrimitiveOrLiteral =
isPrimitiveType(node) || isFunctionLiteral(node) || isRecordLiteral(node);
boolean isReference = isReferenceType(node);

// Whether the node is preceded by a '!' or '?'.
boolean hasBang = parent != null && parent.getToken() == Token.BANG;
boolean hasQmark = parent != null && parent.getToken() == Token.QMARK;

// Whether the node is preceded by a '!' that wasn't artificially added.
boolean hasNonArtificialBang = hasBang && !(hasArtificialTopLevelBang && parent == root);

// Whether the node is the type in function(new:T) or function(this:T).
boolean isNewOrThis = parent != null && (parent.isNew() || parent.isThis());

if (isReference && !hasBang && !hasQmark && !isNewOrThis) {
missingCandidates.add(node);
} else if (isPrimitiveOrLiteral && hasNonArtificialBang) {
redundantCandidates.add(node);
}
});
}

private static boolean isPrimitiveType(Node node) {
return node.isString() && PRIMITIVE_TYPE_NAMES.contains(node.getString());
}

private static boolean isReferenceType(Node node) {
return node.isString() && !PRIMITIVE_TYPE_NAMES.contains(node.getString());
}

private static boolean isFunctionLiteral(Node node) {
return node.isFunction();
}

private static boolean isRecordLiteral(Node node) {
return node.getToken() == Token.LC;
}

private static String getReportedTypeName(Node node) {
if (isFunctionLiteral(node)) {
return "Function";
}
if (isRecordLiteral(node)) {
return "Record literal";
}
Preconditions.checkState(isPrimitiveType(node) || isReferenceType(node));
return node.getString();
}
}

0 comments on commit 9c5a5ae

Please sign in to comment.