addScheduleWarning adds a warning to the compiler's schedule warnings list
(warning string)
| 553 | |
| 554 | // addScheduleWarning adds a warning to the compiler's schedule warnings list |
| 555 | func (c *Compiler) addScheduleWarning(warning string) { |
| 556 | if c.scheduleWarnings == nil { |
| 557 | c.scheduleWarnings = []string{} |
| 558 | } |
| 559 | c.scheduleWarnings = append(c.scheduleWarnings, warning) |
| 560 | } |
no outgoing calls
no test coverage detected