Skip to content

0.23.0

Compare
Choose a tag to compare
@aliokan aliokan released this 12 Jun 08:21
· 21 commits to master since this release

Behaviour change

Auto-mapping in IDependencyOwner is now added at the end of the constructor instead of the beginning.

Changelog

Bugs

Enhancements

//Constructor
test = new hex.mock.MockContextHolder( new hex.mock.MockApplicationContext( 'newRecursivity' ) );
//Constructor use for property assignment
r = new hex.mock.MockRectangle();
r.size = new hex.structures.Point( 10, 20 );
//Constructor use in anonymous structures
o2 = { p: new hex.mock.MockContextHolder( new hex.mock.MockApplicationContext( 'propertyRecursivity' ) ) };
//Array declaration in another Array with constructor use
test = 
    [
        new hex.mock.MockClass(),
        new hex.mock.AnotherMockClass(),
        new hex.mock.MockClassWithIntGeneric( 3 ),
        [ new hex.mock.MockClassWithIntGeneric( 4 ), 5 ]
    ];
  • Prepare custom parsers support