ceilfors / gq

Quick and dirty debugging output for Groovy tired programmers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Better void handling

ceilfors opened this issue · comments

Currently when the below code is evaluated

void nothing(args) {}
q(nothing(5))

gq will print run: nothing(5)=null

This might cause confusion for the user. Better option would be:

  • run: nothing(5)=null
  • run: nothing(5)