MCPcopy Create free account
hub / github.com/TruthHun/BookStack / SourceLocation

Function SourceLocation

static/katex/katex.js:125–132  ·  view source on GitHub ↗
(lexer, start, end)

Source from the content-addressed store, hash-verified

123 // Start offset, zero-based inclusive.
124 // End offset, zero-based exclusive.
125 function SourceLocation(lexer, start, end) {
126 this.lexer = void 0;
127 this.start = void 0;
128 this.end = void 0;
129 this.lexer = lexer;
130 this.start = start;
131 this.end = end;
132 }
133 /**
134 * Merges two `SourceLocation`s from location providers, given they are
135 * provided in order of appearance.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected