当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Context.trigger方法代码示例

本文整理汇总了TypeScript中typedoc/dist/lib/converter.Context.trigger方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Context.trigger方法的具体用法?TypeScript Context.trigger怎么用?TypeScript Context.trigger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在typedoc/dist/lib/converter.Context的用法示例。


在下文中一共展示了Context.trigger方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: createBiblioReflection

 function createBiblioReflection(name: string, url: string) {
     const symbol = checker.resolveName(name, undefined, ts.SymbolFlags.Type, false);
     if (symbol) {
         for (const node of symbol.declarations) {
             const kind = 
                 ts.isInterfaceDeclaration(node) ? ReflectionKind.Interface :
                 ts.isClassDeclaration(node) ? ReflectionKind.Class :
                 ts.isEnumDeclaration(node) ? ReflectionKind.Enum :
                 ts.isModuleDeclaration(node) ? ts.isStringLiteral(node.name) ? ReflectionKind.ExternalModule : ReflectionKind.Module :
                 ts.isTypeAliasDeclaration(node) ? ReflectionKind.TypeAlias :
                 ts.isVariableDeclaration(node) ? ReflectionKind.Variable :
                 undefined;
             if (kind === undefined) continue;
             const reflection = new DeclarationReflection(context.project, name, kind);
             context.registerReflection(reflection, node, symbol);
             context.trigger(Converter.EVENT_CREATE_DECLARATION, reflection, node);
             if (ts.isClassDeclaration(node) || ts.isInterfaceDeclaration(node)) {
                 context.withScope(reflection, node.typeParameters!, () => {});
             }
             if (reflection) {
                 reflection.url = url;
                 reflection.urlTarget = "external";
             }
         }
     }
 }
开发者ID:rbuckton,项目名称:QueryJS,代码行数:26,代码来源:biblio.ts


注:本文中的typedoc/dist/lib/converter.Context.trigger方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。