1
0
Fork 0

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
Mike Gerwitz 2014-04-28 15:06:43 -04:00
commit 034876ae3b
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
2 changed files with 2 additions and 0 deletions

View File

@ -91,6 +91,7 @@ require( 'common' ).testCase(
'AbstractClass',
'FinalClass',
'Interface',
'Trait',
'version'
] .forEach( function( item )
{

View File

@ -63,6 +63,7 @@ var easejs = {};
ns_exports.AbstractClass = module['class_abstract'].exports;
ns_exports.FinalClass = module['class_final'].exports;
ns_exports.Interface = module['interface'].exports;
ns_exports.Trait = module['Trait'].exports;
ns_exports.version = module['version'].exports;
} )( easejs );