hasParamDecls property

bool hasParamDecls
final

Wether to check params when called A function like:

  fun { return 42 }

will accept any params, while a function:

  fun () { return 42 }

will accept 0 params

Implementation

final bool hasParamDecls;