genFunctionName method

  1. @override
String genFunctionName(
  1. String productionName
)

Generate a function name in the way the language allows

Implementation

@override
String genFunctionName(String productionName) {
  return 'sp_' + sanitizeName(productionName);
}