(a, b)
| 3074 | // Operations on {line, ch} objects. |
| 3075 | function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} |
| 3076 | function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} |
| 3077 | function copyPos(x) {return {line: x.line, ch: x.ch};} |
| 3078 | |
| 3079 | function elt(tag, content, className, style) { |
no outgoing calls
no test coverage detected
searching dependent graphs…