Trait API now exposed in combined source files
I missed this in the 0.2.0 release and did not notice in code I've been writing using traits because the test cases are executed by Node. Sorry to anyone who may have had trouble client-side.protolib
commit
034876ae3b
|
@ -91,6 +91,7 @@ require( 'common' ).testCase(
|
||||||
'AbstractClass',
|
'AbstractClass',
|
||||||
'FinalClass',
|
'FinalClass',
|
||||||
'Interface',
|
'Interface',
|
||||||
|
'Trait',
|
||||||
'version'
|
'version'
|
||||||
] .forEach( function( item )
|
] .forEach( function( item )
|
||||||
{
|
{
|
||||||
|
|
|
@ -63,6 +63,7 @@ var easejs = {};
|
||||||
ns_exports.AbstractClass = module['class_abstract'].exports;
|
ns_exports.AbstractClass = module['class_abstract'].exports;
|
||||||
ns_exports.FinalClass = module['class_final'].exports;
|
ns_exports.FinalClass = module['class_final'].exports;
|
||||||
ns_exports.Interface = module['interface'].exports;
|
ns_exports.Interface = module['interface'].exports;
|
||||||
|
ns_exports.Trait = module['Trait'].exports;
|
||||||
ns_exports.version = module['version'].exports;
|
ns_exports.version = module['version'].exports;
|
||||||
} )( easejs );
|
} )( easejs );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue