Home
last modified time | relevance | path

Searched refs:RESERVED_WORDS (Results 1 – 12 of 12) sorted by relevance

/plugin/combo/ComboStrap/
H A DStringUtility.php276 Url::RESERVED_WORDS,
H A DWikiPath.php1006 … self::$reservedWords = array_merge(Url::RESERVED_WORDS, LocalPath::RESERVED_WINDOWS_CHARACTERS);
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dscope.js572 if (in_use.has(name) || RESERVED_WORDS[name] || options.reserved.has[name]) continue;
682 } while (RESERVED_WORDS[name]);
734 var avoid = Object.create(RESERVED_WORDS);
Dparse.js49 var RESERVED_WORDS = [ variable
57 RESERVED_WORDS = makePredicate(RESERVED_WORDS);
Doutput.js1520 …if (output.option("ie") && RESERVED_WORDS[prop] || self.quoted && output.option("keep_quoted_props…
1710 } else if (RESERVED_WORDS[key] ? !output.option("ie") : is_identifier_string(key)) {
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dparse.js49 var RESERVED_WORDS = 'abstract boolean byte char class double enum export extends final float goto … variable
54 RESERVED_WORDS = makePredicate(RESERVED_WORDS);
158 return !RESERVED_WORDS(name) && /^[a-z_$][a-z0-9_$]*$/i.test(name);
Doutput.js1219 } else if (RESERVED_WORDS(key) ? output.option("screw_ie8") : is_identifier_string(key)) {
Dcompress.js4008 … if (RESERVED_WORDS(prop) ? compressor.option("screw_ie8") : is_identifier_string(prop)) {
4035 if (RESERVED_WORDS(prop) && !compressor.option("screw_ie8")) {
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/
Djavascript-compiler.js1249 const compilerWords = (JavaScriptCompiler.RESERVED_WORDS = {});
1261 !JavaScriptCompiler.RESERVED_WORDS[name] &&
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/
Djavascript-compiler.js1116 var compilerWords = JavaScriptCompiler.RESERVED_WORDS = {};
1127 return !JavaScriptCompiler.RESERVED_WORDS[name] && /^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(name);
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/
Djavascript-compiler.js1124 var compilerWords = JavaScriptCompiler.RESERVED_WORDS = {};
1135 return !JavaScriptCompiler.RESERVED_WORDS[name] && /^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(name);
/plugin/combo/ComboStrap/Web/
H A DUrl.php165 …const RESERVED_WORDS = [':', '!', '#', '$', '&', '\'', '(', ')', '*', '+', ',', '/', ';', '=', '?'… define in ComboStrap\\Web\\Url