Lines Matching refs:relativePath
31 const relativePath = replaceAll(path.sep, '/', path.relative(
40 if (checkNullNode(template, operate) || checkRootNode(template, operate, relativePath)) {
52 generate(rootArray[rootIndex], filePath, undefined, relativePath)
88 function checkRootNode(template, operate, relativePath) { argument
101 …componentValidator.elementNames[relativePath] = componentValidator.elementNames[relativePath] || []
102 componentValidator.elementNames[relativePath].push(element.value.toLowerCase())
134 function generate(node, filePath, preNode, relativePath) { argument
135 componentValidator.validateTagName(node, compileResult, relativePath)
137 checkNodeAttrs(node, filePath, preNode, relativePath)
140 checkNodeChildren(node, filePath, relativePath)
150 function checkNodeAttrs(node, filePath, preNode, relativePath) { argument
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)
178 compileResult, pos, relativePath)
181 componentValidator.validateAttrElse(preNode, compileResult, pos, relativePath)
184 componentValidator.validateAppend(attrValue, compileResult, pos, relativePath)
188 componentValidator.validateEvent(attrName, attrValue, compileResult, pos, relativePath)
190 componentValidator.parseDataAttr(attrName, attrValue, compileResult, pos, relativePath)
199 relativePath
261 function checkNodeChildren(node, filePath, relativePath) { argument
279 generate(child, filePath, preNode, relativePath)
287 compileResult, child.tagName, pos, relativePath)
291 compileResult, child.tagName, pos, relativePath)