例えば、コンパイルレベルSIMPLE_OPTIMIZATIONS
を使用して、あなたはまだVERBOSE
に設定警告レベルで型チェックの警告を取得します。
// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level SIMPLE_OPTIMIZATIONS
// @warning_level VERBOSE
// ==/ClosureCompiler==
/**
* A card.
* @constructor
* @param {String} cardName The exact name of the card
* @param {Kinetic.Layer} layer The layer for the card
*/
function CardObject(cardName, layer)
{
/** @type {Number} */
var number = cardName;
}
Number of warnings: 2
JSC_TYPE_PARSE_ERROR: Bad type annotation. Unknown type Kinetic.Layer at line 5
character 10
* @param {Kinetic.Layer} layer The layer for the card
^
JSC_TYPE_MISMATCH: initializing variable
found : (String|null|undefined)
required: (Number|null) at line 10 character 13
var number = cardName;
^
がチェックは、各警告レベルに関連付けられているかを正確に理解するために、出力は、ここでWarningLevels.javaから関連するコードです。
QUIET
/**
* Silence all non-essential warnings.
*/
private static void silenceAllWarnings(CompilerOptions options) {
// Just use a ShowByPath warnings guard, so that we don't have
// to maintain a separate class of warnings guards for silencing warnings.
options.addWarningsGuard(
new ShowByPathWarningsGuard(
"the_longest_path_that_cannot_be_expressed_as_a_string"));
// Allow passes that aren't going to report anything to be skipped.
options.checkRequires = CheckLevel.OFF;
options.checkProvides = CheckLevel.OFF;
options.checkMissingGetCssNameLevel = CheckLevel.OFF;
options.aggressiveVarCheck = CheckLevel.OFF;
options.checkTypes = false;
options.setWarningLevel(DiagnosticGroups.CHECK_TYPES, CheckLevel.OFF);
options.checkUnreachableCode = CheckLevel.OFF;
options.checkMissingReturn = CheckLevel.OFF;
options.setWarningLevel(DiagnosticGroups.ACCESS_CONTROLS, CheckLevel.OFF);
options.setWarningLevel(DiagnosticGroups.CONST, CheckLevel.OFF);
options.setWarningLevel(DiagnosticGroups.CONSTANT_PROPERTY, CheckLevel.OFF);
options.checkGlobalNamesLevel = CheckLevel.OFF;
options.checkSuspiciousCode = false;
options.checkGlobalThisLevel = CheckLevel.OFF;
options.setWarningLevel(DiagnosticGroups.GLOBAL_THIS, CheckLevel.OFF);
options.setWarningLevel(DiagnosticGroups.ES5_STRICT, CheckLevel.OFF);
options.checkCaja = false;
}
DEFAULT options.checkTypes = true;
のみVERBOSE警告レベルに設定されていることを
/**
* Add the default checking pass to the compilation options.
* @param options The CompilerOptions object to set the options on.
*/
private static void addDefaultWarnings(CompilerOptions options) {
options.checkSuspiciousCode = true;
options.checkUnreachableCode = CheckLevel.WARNING;
options.checkControlStructures = true;
}
VERBOSE
/**
* Add all the check pass that are possibly relevant to a non-googler.
* @param options The CompilerOptions object to set the options on.
*/
private static void addVerboseWarnings(CompilerOptions options) {
addDefaultWarnings(options);
// checkSuspiciousCode needs to be enabled for CheckGlobalThis to get run.
options.checkSuspiciousCode = true;
options.checkGlobalThisLevel = CheckLevel.WARNING;
options.checkSymbols = true;
options.checkMissingReturn = CheckLevel.WARNING;
// checkTypes has the side-effect of asserting that the
// correct number of arguments are passed to a function.
// Because the CodingConvention used with the web service does not provide a
// way for optional arguments to be specified, these warnings may result in
// false positives.
options.checkTypes = true;
options.checkGlobalNamesLevel = CheckLevel.WARNING;
options.aggressiveVarCheck = CheckLevel.WARNING;
options.setWarningLevel(
DiagnosticGroups.MISSING_PROPERTIES, CheckLevel.WARNING);
options.setWarningLevel(
DiagnosticGroups.DEPRECATED, CheckLevel.WARNING);
}
注意してください。 が指摘しているように、コンパイルレベルADVANCED_OPTIMIZATIONS
を使用している場合は、型チェックも有効です。
はまた、警告のクラスが閉鎖コンパイラアプリケーション(JARファイル)を使用して、コンパイラフラグを個別に制御することができる。--jscomp_warning
- --jscomp_off
- --jscomp_error
指定できる警告クラスは次のとおりです。
- accessControls
- es5Strict
duplicateMessage
- を廃止予定
- ambiguousFunctionDecl
- checkRegExp
- checkTypes
- checkVars
- CONST
- constantProperty
- externsValidation
- fileoverviewTags
- globalThis
- internetExplorerChecks
- invalidCasts
- missingProperties
- nonStandardJsDocs
- strictModuleDepCheck
- typeInvalidation
- undefinedNames
- undefinedVars
- unknownDefines例えば
- uselessCode
- 視界
、型チェックの警告は個別に有効にすることができます。
--jscomp_warning=checkTypes
これは素晴らしい回答です。ありがとう、私はたくさんのことを学びました、そして、今私はタイプチェックと簡単な最適化を使用することができます:Dありがとう! –