File tree 5 files changed +0
-143
lines changed
src/com/google/javascript/jscomp
test/com/google/javascript/jscomp/lint
5 files changed +0
-143
lines changed Original file line number Diff line number Diff line change 31
31
import com .google .javascript .jscomp .ExtractPrototypeMemberDeclarations .Pattern ;
32
32
import com .google .javascript .jscomp .NodeTraversal .Callback ;
33
33
import com .google .javascript .jscomp .PassFactory .HotSwapPassFactory ;
34
- import com .google .javascript .jscomp .lint .CheckArguments ;
35
34
import com .google .javascript .jscomp .lint .CheckDuplicateCase ;
36
35
import com .google .javascript .jscomp .lint .CheckEmptyStatements ;
37
36
import com .google .javascript .jscomp .lint .CheckEnums ;
@@ -1558,7 +1557,6 @@ protected HotSwapCompilerPass create(AbstractCompiler compiler) {
1558
1557
@ Override
1559
1558
protected HotSwapCompilerPass create (AbstractCompiler compiler ) {
1560
1559
ImmutableList .Builder <Callback > callbacks = ImmutableList .<Callback >builder ()
1561
- .add (new CheckArguments (compiler ))
1562
1560
.add (new CheckEmptyStatements (compiler ))
1563
1561
.add (new CheckEnums (compiler ))
1564
1562
.add (new CheckInterfaces (compiler ))
Original file line number Diff line number Diff line change 20
20
import com .google .common .base .Preconditions ;
21
21
import com .google .common .collect .ImmutableMap ;
22
22
import com .google .common .collect .ImmutableSet ;
23
- import com .google .javascript .jscomp .lint .CheckArguments ;
24
23
import com .google .javascript .jscomp .lint .CheckDuplicateCase ;
25
24
import com .google .javascript .jscomp .lint .CheckEmptyStatements ;
26
25
import com .google .javascript .jscomp .lint .CheckEnums ;
@@ -468,7 +467,6 @@ public DiagnosticGroup forName(String name) {
468
467
// provide optional suggestions.
469
468
public static final DiagnosticGroup LINT_CHECKS =
470
469
DiagnosticGroups .registerGroup ("lintChecks" , // undocumented
471
- CheckArguments .BAD_ARGUMENTS_USAGE ,
472
470
CheckEmptyStatements .USELESS_EMPTY_STATEMENT ,
473
471
CheckEnums .COMPUTED_PROP_NAME_IN_ENUM ,
474
472
CheckEnums .DUPLICATE_ENUM_VALUE ,
Original file line number Diff line number Diff line change 17
17
18
18
import com .google .common .collect .ImmutableList ;
19
19
import com .google .javascript .jscomp .NodeTraversal .Callback ;
20
- import com .google .javascript .jscomp .lint .CheckArguments ;
21
20
import com .google .javascript .jscomp .lint .CheckDuplicateCase ;
22
21
import com .google .javascript .jscomp .lint .CheckEmptyStatements ;
23
22
import com .google .javascript .jscomp .lint .CheckEnums ;
@@ -107,7 +106,6 @@ protected CompilerPass create(AbstractCompiler compiler) {
107
106
return new CombinedCompilerPass (
108
107
compiler ,
109
108
ImmutableList .<Callback >of (
110
- new CheckArguments (compiler ),
111
109
new CheckDuplicateCase (compiler ),
112
110
new CheckEmptyStatements (compiler ),
113
111
new CheckEnums (compiler ),
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments