(source, start)
| 1106 | } |
| 1107 | |
| 1108 | function skipLineComment(source, start) { |
| 1109 | const next = source.indexOf("\n", start + 2); |
| 1110 | return next < 0 ? source.length - 1 : next; |
| 1111 | } |
| 1112 | |
| 1113 | function skipBlockComment(source, start) { |
| 1114 | const next = source.indexOf("*/", start + 2); |