mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-10 06:41:59 -05:00
10 lines
131 B
JavaScript
10 lines
131 B
JavaScript
|
/**
|
||
|
* A test constructor.
|
||
|
* @constructor
|
||
|
* @ignore
|
||
|
*/
|
||
|
function Ignored() {
|
||
|
/** a method */
|
||
|
this.bar = function() {
|
||
|
}
|
||
|
}
|