(message, line, character)
| 1106 | } |
| 1107 | |
| 1108 | function quit(message, line, character) { |
| 1109 | throw { |
| 1110 | name: 'JSLintError', |
| 1111 | line: line, |
| 1112 | character: character, |
| 1113 | message: bundle.scanned_a_b.supplant({ |
| 1114 | a: message, |
| 1115 | b: Math.floor((line / lines.length) * 100) |
| 1116 | }) |
| 1117 | }; |
| 1118 | } |
| 1119 | |
| 1120 | function warn(message, offender, a, b, c, d) { |
| 1121 | var character, line, warning; |