本文整理汇总了TypeScript中babel-types.program函数的典型用法代码示例。如果您正苦于以下问题:TypeScript program函数的具体用法?TypeScript program怎么用?TypeScript program使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了program函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: prepareBundleModule
/**
* Generate code containing import statements to all bundled modules and
* export statements to re-export their namespaces and exports.
*
* Example: a bundle containing files `module-a.js` and `module-b.js` would
* result in a prepareBundleModule result like:
*
* import * as $moduleA from './module-a.js';
* import * as $moduleB from './module-b.js';
* import $moduleBDefault from './module-b.js';
* export {thing1, thing2} from './module-a.js';
* export {thing3} from './module-b.js';
* export {$moduleA, $moduleB, $moduleBDefault};
*/
async function prepareBundleModule(
bundler: Bundler, manifest: BundleManifest, assignedBundle: AssignedBundle):
Promise<string> {
let bundleSource = babel.program([]);
const sourceAnalysis =
await bundler.analyzer.analyze([...assignedBundle.bundle.files]);
for (const sourceUrl of [...assignedBundle.bundle.files].sort()) {
const rebasedSourceUrl =
ensureLeadingDot(bundler.analyzer.urlResolver.relative(
stripUrlFileSearchAndHash(assignedBundle.url), sourceUrl));
const moduleDocument = getAnalysisDocument(sourceAnalysis, sourceUrl);
const moduleExports = getModuleExportNames(moduleDocument);
const starExportName =
getOrSetBundleModuleExportName(assignedBundle, sourceUrl, '*');
bundleSource.body.push(babel.importDeclaration(
[babel.importNamespaceSpecifier(babel.identifier(starExportName))],
babel.stringLiteral(rebasedSourceUrl)));
if (moduleExports.size > 0) {
bundleSource.body.push(babel.exportNamedDeclaration(
undefined, [babel.exportSpecifier(
babel.identifier(starExportName),
babel.identifier(starExportName))]));
bundleSource.body.push(babel.exportNamedDeclaration(
undefined,
[...moduleExports].map(
(e) => babel.exportSpecifier(
babel.identifier(e),
babel.identifier(getOrSetBundleModuleExportName(
assignedBundle, sourceUrl, e)))),
babel.stringLiteral(rebasedSourceUrl)));
}
}
const {code} = generate(bundleSource);
return code;
}
示例2: parseWXML
export function parseWXML (dirPath: string, wxml?: string, parseImport?: boolean): {
wxses: WXS[]
wxml?: t.Node
imports: Imports[]
refIds: Set<string>
} {
if (!parseImport) {
errors.length = 0
usedComponents.clear()
}
usedComponents.add('Block')
let wxses: WXS[] = []
let imports: Imports[] = []
const refIds = new Set<string>()
const loopIds = new Set<string>()
if (!wxml) {
return {
wxses,
imports,
refIds,
wxml: t.nullLiteral()
}
}
const nodes = removEmptyTextAndComment(parse(wxml.trim()))
const ast = t.file(
t.program(
[
t.expressionStatement(parseNode(
buildElement('block', nodes as Node[])
) as t.Expression)
],
[]
)
)
traverse(ast, createWxmlVistor(loopIds, refIds, dirPath, wxses, imports))
refIds.forEach(id => {
if (loopIds.has(id) || imports.filter(i => i.wxs).map(i => i.name).includes(id)) {
refIds.delete(id)
}
})
return {
wxses,
imports,
wxml: hydrate(ast),
refIds
}
}
示例3: parseWXML
export function parseWXML (dirPath: string, wxml?: string, parseImport?: boolean): {
wxses: WXS[]
wxml?: t.Node
imports: Imports[]
} {
if (!parseImport) {
errors.length = 0
}
usedComponents.clear()
let wxses: WXS[] = []
let imports: Imports[] = []
if (!wxml) {
return {
wxses,
imports,
wxml: t.nullLiteral()
}
}
const nodes = removEmptyTextAndComment(parse(wxml.trim()))
const ast = t.file(
t.program(
[
t.expressionStatement(parseNode(
buildElement('block', nodes as Node[])
) as t.Expression)
],
[]
)
)
traverse(ast, {
JSXAttribute (path) {
const name = path.node.name as t.JSXIdentifier
const jsx = path.findParent(p => p.isJSXElement()) as NodePath<
t.JSXElement
>
const valueCopy = cloneDeep(path.get('value').node)
transformIf(name.name, path, jsx, valueCopy)
transformLoop(name.name, path, jsx, valueCopy)
},
JSXElement: {
enter (path: NodePath<t.JSXElement>) {
const openingElement = path.get('openingElement')
const jsxName = openingElement.get('name')
const attrs = openingElement.get('attributes')
if (!jsxName.isJSXIdentifier()) {
return
}
const tagName = jsxName.node.name
if (tagName === 'Wxs') {
wxses.push(getWXS(attrs.map(a => a.node), path, dirPath))
}
if (tagName === 'Template') {
const template = parseTemplate(path, dirPath)
if (template) {
const { ast: classDecl, name } = template
const taroComponentsImport = buildImportStatement('@tarojs/components', [
...usedComponents
])
const taroImport = buildImportStatement('@tarojs/taro', [], 'Taro')
// const withWeappImport = buildImportStatement(
// '@tarojs/with-weapp',
// [],
// 'withWeapp'
// )
const ast = t.file(t.program([]))
ast.program.body.unshift(
taroComponentsImport,
taroImport,
// withWeappImport,
t.exportDefaultDeclaration(classDecl)
)
imports.push({
ast,
name
})
}
}
if (tagName === 'Import') {
const mods = parseModule(path, dirPath, 'import')
if (mods) {
imports = imports.concat(mods)
}
}
if (tagName === 'Include') {
parseModule(path, dirPath, 'include')
}
},
exit (path: NodePath<t.JSXElement>) {
const openingElement = path.get('openingElement')
const jsxName = openingElement.get('name')
if (!jsxName.isJSXIdentifier({ name: 'Block' })) {
return
}
const children = path.node.children
if (children.length === 1) {
const caller = children[0]
if (t.isJSXExpressionContainer(caller) && t.isCallExpression(caller.expression) && !path.parentPath.isExpressionStatement()) {
path.replaceWith(caller)
}
//.........这里部分代码省略.........
示例4: cloneDeep
//.........这里部分代码省略.........
if (tagName === 'Slot') {
const nameAttr = attrs.find(a => a.node.name.name === 'name')
let slotName = ''
if (nameAttr) {
if (nameAttr.node.value && t.isStringLiteral(nameAttr.node.value)) {
slotName = nameAttr.node.value.value
} else {
throw codeFrameError(jsxName.node, 'slot 的值必须是一个字符串')
}
}
const children = t.memberExpression(
t.memberExpression(t.thisExpression(), t.identifier('props')),
t.identifier(slotName ? buildSlotName(slotName) : 'children')
)
try {
path.replaceWith(path.parentPath.isJSXElement() ? t.jSXExpressionContainer(children) : children)
} catch (error) {
//
}
}
if (tagName === 'Wxs') {
wxses.push(getWXS(attrs.map(a => a.node), path, imports))
}
if (tagName === 'Template') {
// path.traverse({
// JSXAttribute: jsxAttrVisitor
// })
const template = parseTemplate(path, dirPath)
if (template) {
const { ast: classDecl, name } = template
const taroComponentsImport = buildImportStatement('@tarojs/components', [
...usedComponents
])
const taroImport = buildImportStatement('@tarojs/taro', [], 'Taro')
// const withWeappImport = buildImportStatement(
// '@tarojs/with-weapp',
// [],
// 'withWeapp'
// )
const ast = t.file(t.program([]))
ast.program.body.unshift(
taroComponentsImport,
taroImport,
// withWeappImport,
t.exportDefaultDeclaration(classDecl)
)
let usedTemplate = new Set<string>()
traverse(ast, {
JSXIdentifier (p) {
const node = p.node
if (node.name.endsWith('Tmpl') && node.name.length > 4 && p.parentPath.isJSXOpeningElement()) {
usedTemplate.add(node.name)
}
}
})
usedTemplate.forEach(componentName => {
if (componentName !== classDecl.id.name) {
ast.program.body.unshift(
buildImportStatement(`./${componentName}`, [], componentName)
)
}
})
imports.push({
ast,
name
})
}
}
if (tagName === 'Import') {
const mods = parseModule(path, dirPath, 'import')
if (mods) {
imports.push(...mods)
}
}
if (tagName === 'Include') {
parseModule(path, dirPath, 'include')
}
},
exit (path: NodePath<t.JSXElement>) {
const openingElement = path.get('openingElement')
const jsxName = openingElement.get('name')
if (!jsxName.isJSXIdentifier({ name: 'Block' })) {
return
}
const children = path.node.children
if (children.length === 1) {
const caller = children[0]
if (t.isJSXExpressionContainer(caller) && t.isCallExpression(caller.expression) && !path.parentPath.isExpressionStatement()) {
try {
path.replaceWith(caller)
} catch (error) {
//
}
}
}
}
}
} as Visitor
}