marlon407 / code-groovy

21 stars 6 forks source link

Add support Map and List<Map> format in functionRegEx #11

Open dove-young opened 5 years ago

dove-young commented 5 years ago

function definition in Groovy could also be in these format:

Map somefunc ( args ) {

    return someMap
}

and

List<Map> somefunc ( args ) {

  return someList
}

And these functions are not listed in function outline list.