PageRenderTime 5ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/jsdoc_toolkit-1.4.0/test/data/functions.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 19 lines | 12 code | 4 blank | 3 comment | 0 complexity | 30a0b5ed4b9b3f6a02eeb3b0cc419a09 MD5 | raw file
  1. // nested functions
  2. /** The layout object; */
  3. function Layout(){
  4. this.init = function() {}
  5. /** an element of the layout */
  6. this.Element = function(elName) {
  7. this.expand = function() {
  8. };
  9. };
  10. this.Canvas = function(top, left, width, height) {
  11. this.initiated = true;
  12. }
  13. function rotate() {
  14. }
  15. }