Sha256: 29fdb7a9a7a22b0d88ac9dceb7af33a739243742cbd51cf6b96e8ae912e0a84c

Contents?: true

Size: 488 Bytes

Versions: 10

Compression:

Stored size: 488 Bytes

Contents

/**
   This is the main container for the FOODOC handler.
   @namespace
*/
FOODOC = {
};

/** The current version string of this application. */
FOODOC.VERSION = "1.0";

FOODOC.handle = function(srcFile, src) {
  LOG.inform("Handling file '" + srcFile + "'");
  
  return [
    new JSDOC.Symbol(
      "foo",
      [],
      "VIRTUAL",
      new JSDOC.DocComment("/** This is a foo. */")
    )
  ];
};

FOODOC.publish = function(symbolgroup) {
  LOG.inform("Publishing symbolgroup.");
};

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sproutcore-0.9.15 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.14 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.19 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.18 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.16 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.17 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.20 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.23 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.21 jsdoc/app/handlers/FOODOC.js
sproutcore-0.9.22 jsdoc/app/handlers/FOODOC.js