Searched refs:attrValue (Results 1 – 2 of 2) sorted by relevance
| /developtools/ace_js2bundle/ace-loader/plugin/templater/ |
| D | index.js | 158 const attrValue = attr.value 161 componentValidator.validateStyle(attrValue, compileResult, pos, relativePath) 164 componentValidator.validateClass(attrValue, compileResult, pos, relativePath) 167 componentValidator.validateId(attrValue, compileResult, pos, relativePath) 171 componentValidator.validateFor(attrValue, compileResult, pos, relativePath) 174 componentValidator.validateIf(attrValue, compileResult, false, pos, relativePath) 177 componentValidator.validateAttrElif(preNode, attrValue, attributes, index, 184 componentValidator.validateAppend(attrValue, compileResult, pos, relativePath) 188 componentValidator.validateEvent(attrName, attrValue, compileResult, pos, relativePath) 190 componentValidator.parseDataAttr(attrName, attrValue, compileResult, pos, relativePath) [all …]
|
| D | component_validator.js | 1141 function validateAttr(resourcePath, attrName, attrValue, out, tagName, nodeLoc, relativePath) { argument 1142 if (card && attrName === 'tid' && bind.isExp(attrValue)) { 1151 attrValue = attrValue.replace(trans, transReplaceArray[index]) 1154 if (attrName && (typeof attrValue === 'string' || typeof attrValue === 'number') && attrValue) { 1167 result = SysResourceTypeRefReg.exec(attrValue); 1168 getAttrValue(result, attrValue, true); 1171 result = AppResourceTypeRefReg.exec(attrValue); 1172 getAttrValue(result, attrValue, false); 1174 if (tagWithPath.indexOf(attrName) >= 0 && attrValue.match(/^\.\.\/|^\.\//)) { 1178 if (attrValue.indexOf('./') >= 0) { [all …]
|