1
Closure Compiler可以使用有關JavaScript變量的數據類型信息來提供增強的優化和警告。我將在哪裏使用谷歌關閉功能註釋?
我在看their type expressions並查看幾個函數類型列表。例如:
{function(string, boolean)}
A function that takes two parameters (a string and a boolean), and has an unknown return value.
又如:
{function(new:goog.ui.Menu, string)}
A function that takes one parameter (a string), and creates a new instance of goog.ui.Menu when called with the 'new' keyword.
有人能告訴我在哪裏,我會使用這些註解,並給它會是什麼樣子在實踐中的例子嗎?它們主要用於@param和@return函數作爲參數或返回函數嗎?
好的。我腦海中過度複雜。謝謝。 – 2011-12-18 00:39:46
感謝您的這一點,我認爲這也是必要的或用於評論功能本身。 – 2012-04-30 11:23:25