本文整理汇总了TypeScript中babel-types.jSXEmptyExpression函数的典型用法代码示例。如果您正苦于以下问题:TypeScript jSXEmptyExpression函数的具体用法?TypeScript jSXEmptyExpression怎么用?TypeScript jSXEmptyExpression使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了jSXEmptyExpression函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: parseNode
function parseNode (node: AllKindNode) {
if (node.type === NodeType.Text) {
return parseText(node)
} else if (node.type === NodeType.Comment) {
const emptyStatement = t.jSXEmptyExpression()
emptyStatement.innerComments = [{
type: 'CommentBlock',
value: ' ' + node.content + ' '
}] as any[]
return t.jSXExpressionContainer(emptyStatement)
}
return parseElement(node)
}
示例2: parseModule
export function parseModule (jsx: NodePath<t.JSXElement>, dirPath: string, type: 'include' | 'import') {
const openingElement = jsx.get('openingElement')
const attrs = openingElement.get('attributes')
const src = attrs.find(attr => attr.get('name').isJSXIdentifier({ name: 'src' }))
if (!src) {
throw new Error(`${type} 标签必须包含 \`src\` 属性`)
}
const value = src.get('value')
if (!value.isStringLiteral()) {
throw new Error(`${type} 标签的 src 属性值必须是一个字符串`)
}
const srcValue = value.node.value
if (type === 'import') {
const wxml = getWXMLsource(dirPath, srcValue, type)
const { imports } = parseWXML(resolve(dirPath, srcValue), wxml, true)
try {
jsx.remove()
} catch (error) {
//
}
return imports
} else {
const { wxml } = parseWXML(dirPath, getWXMLsource(dirPath, srcValue, type), true)
const block = buildBlockElement()
try {
if (wxml) {
block.children = [wxml as any]
jsx.replaceWith(wxml)
} else {
block.children = [t.jSXExpressionContainer(t.jSXEmptyExpression())]
jsx.replaceWith(block)
}
} catch (error) {
//
}
}
}