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

Function tokenParenthesized

static/editor.md/lib/codemirror/mode/css/css.js:105–112  ·  view source on GitHub ↗
(stream, state)

Source from the content-addressed store, hash-verified

103 }
104
105 function tokenParenthesized(stream, state) {
106 stream.next(); // Must be '('
107 if (!stream.match(/\s*[\"\')]/, false))
108 state.tokenize = tokenString(")");
109 else
110 state.tokenize = null;
111 return ret(null, "(");
112 }
113
114 // Context management
115

Callers

nothing calls this directly

Calls 2

tokenStringFunction · 0.70
retFunction · 0.70

Tested by

no test coverage detected