Home
last modified time | relevance | path

Searched refs:nodeName (Results 1 – 3 of 3) sorted by relevance

/developtools/ace-js2bundle/ace-loader/plugin/templater/
Dindex.js42 return currentValue.nodeName.indexOf('#') === -1
90 return currentValue.nodeName.indexOf('#') === -1
94 if (root.nodeName !== 'element') {
263 (child.nodeName === '#text' && child.value.trim()) ||
264 !REGEXP_TEXT.test(child.nodeName)
274 if (!REGEXP_TEXT.test(child.nodeName)) {
284 if (node.nodeName === 'option') {
Dcomponent_validator.js244 return child && child.nodeName !== '#text' && child.nodeName !== '#comment'
325 return child.nodeName === '#text' || child.nodeName === '#comment' ||
336 return child.nodeName === '#text' || child.nodeName === '#comment' ||
573 if (tagWithAll.indexOf(child.nodeName) >= 0) {
575 …if ((t && t.indexOf(tagName) < 0) || (childrenArray && childrenArray.indexOf(child.nodeName) < 0) …
576 (unSupportedChildrenArray && unSupportedChildrenArray.indexOf(child.nodeName) >= 0)) {
580 reason: 'ERROR: tag `' + tagName + '` not support child tag `' + child.nodeName + '`',
584 if (child.nodeName === 'tab-content') {
587 if (child.nodeName === 'tab-bar') {
594 reason: 'ERROR: tag `tabs` child tag `' + child.nodeName + '` support at most one',
/developtools/ace-ets2bundle/compiler/src/
Dvalidate_ui_syntax.ts374 const nodeName: ts.Identifier = etsComponentExpression.expression as ts.Identifier; constant
375 …if (AUTOMIC_COMPONENT.has(nodeName.escapedText.toString()) && getNextNode(etsComponentExpression))…
402 const nodeName: ts.Identifier = etsComponentExpression.expression as ts.Identifier; constant
404 if (SINGLE_CHILD_COMPONENT.has(nodeName.escapedText.toString())) {
515 const nodeName: ts.Identifier = etsComponentExpression.expression as ts.Identifier; constant
516 const nodeNameString: string = nodeName.escapedText.toString();