私はこの質問に対する答えを30分過ごしました。回答を添えてここに投稿すると、30分の時間を節約できることが期待されます。JSC_MULTIPLE_VAR_DEFとは何ですか?
このコード
"use strict";
/**
* These are the flower and the instrument used in the code below.
*/
var flower, instrument;
閉鎖コンパイラは私たちにこの警告
JSC_MULTIPLE_VAR_DEF: declaration of multiple variables with shared type information at line 6 character 0
var flower, instrument;
^
を与え、この漠然とした警告はどういう意味をコンパイルすると?
これは長い間私を苛立たせました。 –