You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
583 B
25 lines
583 B
define(["dojo", "dojo/cookie"], function(dojo, cook){ |
|
|
|
dojo.thisIsAtestFunction = function(/* String */a){ |
|
// summary: Testing a function |
|
// a: String |
|
// Testing a string parameter |
|
return a.toUpperCase(); // String |
|
} |
|
|
|
dojo.testFunction2 = function(/* String? */id){ |
|
// summary: Simple summary |
|
// description: |
|
// Simple Description. |
|
// On Multiple lines. |
|
// id: String? |
|
// Duplicate matched in signature and in line |
|
return (id || "").toUpperCase(); // String |
|
} |
|
|
|
dojo.declare("foo.Bar", null, { |
|
// summary: Nondojo NS populated |
|
}) |
|
|
|
return dojo; |
|
});
|
|
|