Skip to content

Commit

Permalink
Merge pull request #26 from DoclerLabs/develop
Browse files Browse the repository at this point in the history
prepare 0.20.2
  • Loading branch information
aliokan authored May 15, 2017
2 parents 89b3eac + 6019208 commit fe1d14c
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/hex/unittest/notifier/ConsoleNotifier.hx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import hex.unittest.event.ITestClassResultListener;
*/
class ConsoleNotifier implements ITestClassResultListener
{
var _trace : Dynamic;
var _tabs : String;
var _errorBubbling : Bool;

Expand All @@ -21,18 +20,11 @@ class ConsoleNotifier implements ITestClassResultListener
public function new( errorBubbling : Bool = false )
{
this._errorBubbling = errorBubbling;
#if js
this._trace = untyped Reflect.field( js.Boot, "__trace" );
#end
}

function _log( message : String ) : Void
{
#if js
Reflect.callMethod( untyped js.Boot, this._trace, [ this._tabs + message] );
#else
_TRACE(this._tabs + message);
#end
}

function _addTab() : Void
Expand Down

0 comments on commit fe1d14c

Please sign in to comment.