Debug.hx 175 B

12345678910111213
  1. package python;
  2. import python.lib.Inspect;
  3. import python.lib.PPrint;
  4. class Debug {
  5. public static function dump (x:Dynamic) {
  6. PPrint.pprint(Inspect.getmembers(x));
  7. }
  8. }