(message, line, character, a, b, c, d)
| 1148 | } |
| 1149 | |
| 1150 | function warn_at(message, line, character, a, b, c, d) { |
| 1151 | return warn(message, { |
| 1152 | line: line, |
| 1153 | from: character |
| 1154 | }, a, b, c, d); |
| 1155 | } |
| 1156 | |
| 1157 | function stop(message, offender, a, b, c, d) { |
| 1158 | var warning = warn(message, offender, a, b, c, d); |
searching dependent graphs…