getCode method

dynamic getCode([
  1. dynamic name
])
override

Implementation

getCode([name]) {
  name ??= this.name;

  return """fn ${name} ( ${this.inputsCode.trim()} ) -> ${this.type}""" +
      this.blockCode;
}