diff --git a/src/hxextern/step/DebugStep.hx b/src/hxextern/step/DebugStep.hx new file mode 100644 index 0000000..a3549bb --- /dev/null +++ b/src/hxextern/step/DebugStep.hx @@ -0,0 +1,24 @@ +package hxextern.step; + +import haxe.DynamicAccess; +import hxextern.step.IStep; +import sys.FileSystem; +import sys.io.File; + +@:step('debug') +class DebugStep extends AbstractStep +{ + public function new() + { + super(); + } + + public override function run(context : StepContext) : Void + { + super.run(context); + + this.console + .debug(Std.string(context.variables)) + ; + } +}