MCPcopy Create free account
hub / github.com/sql-js/sql.js / callBlankLine

Function callBlankLine

GUI/codemirror/lib/codemirror.js:5579–5584  ·  view source on GitHub ↗
(mode, state)

Source from the content-addressed store, hash-verified

5577 }
5578
5579 function callBlankLine(mode, state) {
5580 if (mode.blankLine) return mode.blankLine(state);
5581 if (!mode.innerMode) return;
5582 var inner = CodeMirror.innerMode(mode, state);
5583 if (inner.mode.blankLine) return inner.mode.blankLine(inner.state);
5584 }
5585
5586 function readToken(mode, stream, state) {
5587 var style = mode.token(stream, state);

Callers 2

runModeFunction · 0.85
processLineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…