本文整理汇总了TypeScript中ts-simple-ast.TypeGuards类的典型用法代码示例。如果您正苦于以下问题:TypeScript TypeGuards类的具体用法?TypeScript TypeGuards怎么用?TypeScript TypeGuards使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TypeGuards类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: getExtra
function getExtra(node: Node) {
const extras = []
if (TypeGuards.isJsxTagNamedNode(node)) {
extras.push(node.getTagNameNode().getText().match(/^[a-z]/) ? 'JSXIntrinsicElement' : 'JSXNonIntrinsicElement')
}
const parent = node.getParent()
if (parent && TypeGuards.isJsxTagNamedNode(parent)) {
extras.push(parent.getTagNameNode().getText().match(/^[a-z]/) ? 'JSXIntrinsicElementChild' : 'JSXNonIntrinsicElementChild')
}
return extras.length ? extras : undefined
}
开发者ID:cancerberoSgx,项目名称:javascript-sample-projects,代码行数:11,代码来源:extractCodeDecorations.ts
示例2:
currentSourceFile.forEachChild(node => {
if (TypeGuards.isAmbientableNode(node)) {
node.setHasDeclareKeyword(false);
}
if (TypeGuards.isExportableNode(node)) {
const nodeSymbol = node.getSymbol();
if (
nodeSymbol &&
!exportedSymbols.has(nodeSymbol.getFullyQualifiedName())
) {
node.setIsExported(false);
}
}
});
开发者ID:F001,项目名称:deno,代码行数:14,代码来源:ast_util.ts
示例3: getLineNumberAndOffset
.map(({ start, end }) => {
const { offset, line: startLineNumber } = getLineNumberAndOffset(start, lines, node)
const { line: endLineNumber } = getLineNumberAndOffset(end, lines, node)
return {
startLineNumber,
// Heads up : following sum fixes an error of original implementation when JSXText has multiple lines:
endLineNumber: endLineNumber + (TypeGuards.isJsxText(node) && node.getText().includes('\n') ? -1 : 0),
startColumn: start + 1 - offset,
endColumn: end + 1 - offset,
}
})
开发者ID:cancerberoSgx,项目名称:javascript-sample-projects,代码行数:11,代码来源:extractCodeDecorations.ts
示例4:
sourceFile.forEachChild(node => {
if (TypeGuards.isExpressionStatement(node)) {
const firstChild = node.getFirstChild();
if (!firstChild) {
return;
}
if (TypeGuards.isBinaryExpression(firstChild)) {
const leftExpression = firstChild.getLeft();
if (
TypeGuards.isPropertyAccessExpression(leftExpression) &&
leftExpression.getExpression().getText() === globalVarName
) {
const globalVarProperty = leftExpression.getName();
if (globalVarProperty !== globalVarName) {
globalVariables.set(globalVarProperty, {
type: firstChild.getType(),
node
});
}
}
}
}
});
开发者ID:F001,项目名称:deno,代码行数:23,代码来源:build_library.ts
示例5: createDeclarationFile
export function createDeclarationFile(project: Project) {
const globalFile = project.addExistingSourceFile("../../shared/lib/global.d.ts");
const declarationFile = project.createSourceFile("ts-nameof.macro.d.ts", "", { overwrite: true });
const namespaceDec = declarationFile.addNamespace({
name: `"ts-nameof.macro"`,
declarationKind: NamespaceDeclarationKind.Module,
hasDeclareKeyword: true
});
namespaceDec.setBodyText(globalFile.getFullText());
for (const statement of namespaceDec.getStatements()) {
if (TypeGuards.isAmbientableNode(statement))
statement.setHasDeclareKeyword(false);
}
namespaceDec.addExportAssignment({
expression: "nameof",
isExportEquals: false
});
}
开发者ID:dsherret,项目名称:ts-nameof,代码行数:21,代码来源:createDeclarationFile.ts
注:本文中的ts-simple-ast.TypeGuards类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论