什么是JavaScript源文件,如“Google JavaScript样式指南”中所述

时间:2017-02-16 16:40:42

标签: javascript

我还是个新手。我正在阅读“Google JS样式指南”。我想知道 - Documentation指的是什么?它开始于:

  

源文件按顺序包含:

     
      
  1. 许可或版权信息(如果有)
  2.   
  3. @fileoverview JSDoc,如果存在
  4.   
  5. goog.module statement
  6.   
  7. goog.require statements
  8.   
  9. 文件的实现
  10.   

2 个答案:

答案 0 :(得分:0)


    /**
     * @fileoverview Description of file, its uses and information
     * about its dependencies.
     * @package
     */

    goog.module('my.test.helpers');
    goog.module.declareLegacyNamespace();
    goog.setTestOnly();

    const MyClass = goog.require('some.package.MyClass');
    const NsMyClass = goog.require('other.ns.MyClass');

它基本上意味着上面的格式。我认为这个例子使用谷歌闭包库。

https://github.com/google/closure-library

答案 1 :(得分:-1)

它们是包含JavaScript源代码的文件。

即。任何.js个文件。