MCPcopy
hub / github.com/pandao/editor.md / keywords

Function keywords

lib/codemirror/mode/php/php.js:14–18  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

12 "use strict";
13
14 function keywords(str) {
15 var obj = {}, words = str.split(" ");
16 for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
17 return obj;
18 }
19
20 // Helper for stringWithEscapes
21 function matchSequence(list, end) {

Callers 1

php.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…