8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
|
var Foo = FinalClass( 'Foo',
|
||
|
{
|
||
|
'public describe': function()
|
||
|
{
|
||
|
return "I cannot be extended.";
|
||
|
},
|
||
|
} );
|